Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."

This reverts commit 3a7597e414.
This commit is contained in:
Efraim Flashner 2018-03-22 20:32:48 +02:00
parent 3a7597e414
commit 919034068e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -86,7 +86,8 @@ (define private-keywords
;; to avoid superfluous entries in RUNPATH as described
;; in <https://bugs.gnu.org/28444#46>, so armhf may now
;; have different runtime dependencies from other arches.
,@(if (not (target-arm32?))
,@(if (not (string-prefix? "arm" (or (%current-target-system)
(%current-system))))
`(("patchelf" ,(default-patchelf)))
'())
,@native-inputs))
@ -147,7 +148,8 @@ (define builder
#:search-paths ',(map search-path-specification->sexp
search-paths)
#:phases
(if (target-arm32?)
(if (string-prefix? "arm" ,(or (%current-target-system)
(%current-system)))
(modify-phases build-phases (delete 'fix-runpath))
build-phases)
#:configure-flags ,configure-flags