guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Efraim Flashner
Subject: 01/01: Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."
Date: Thu, 22 Mar 2018 14:33:19 -0400 (EDT)

efraim pushed a commit to branch staging
in repository guix.

commit 919034068ecca6cd16b110fa44246bfe758f984e
Author: Efraim Flashner <address@hidden>
Date:   Thu Mar 22 20:32:48 2018 +0200

    Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."
    
    This reverts commit 3a7597e4147235781d43ba9cef7a52ced9ea5e7a.
---
 guix/build-system/meson.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm
index 88a7b58..529a2b8 100644
--- a/guix/build-system/meson.scm
+++ b/guix/build-system/meson.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]