Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."
authorEfraim Flashner <efraim@flashner.co.il>
Thu, 22 Mar 2018 18:32:48 +0000 (20:32 +0200)
committerEfraim Flashner <efraim@flashner.co.il>
Thu, 22 Mar 2018 18:33:08 +0000 (20:33 +0200)
This reverts commit 3a7597e4147235781d43ba9cef7a52ced9ea5e7a.

guix/build-system/meson.scm

index 88a7b58..529a2b8 100644 (file)
@@ -86,7 +86,8 @@
                          ;; 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 @@ has a 'meson.build' file."
                     #: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