build-system/meson: Really skip the 'fix-runpath' phase on armhf.
This follows up commit d5b5a15a40
which doesn't
work because %current-system etc expands before the actual build.
Fixes <https://bugs.gnu.org/31719>.
* guix/build-system/meson.scm (meson-build)[builder]: Compare against the
already existing "system" variable rather than (%current-system).
This commit is contained in:
parent
fa41a089a1
commit
cb4b508cd6
1 changed files with 1 additions and 2 deletions
|
@ -148,8 +148,7 @@ (define builder
|
|||
#:search-paths ',(map search-path-specification->sexp
|
||||
search-paths)
|
||||
#:phases
|
||||
(if (string-prefix? "arm" ,(or (%current-target-system)
|
||||
(%current-system)))
|
||||
(if (string-prefix? "arm" ,system)
|
||||
(modify-phases build-phases (delete 'fix-runpath))
|
||||
build-phases)
|
||||
#:configure-flags ,configure-flags
|
||||
|
|
Loading…
Reference in a new issue