guix-commits
[Top][All Lists]
Advanced

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

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


From: Marius Bakke
Subject: 02/02: Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."
Date: Mon, 19 Mar 2018 19:07:31 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit 061f204dcd9d003a45026baff4bd1492306029d0
Author: Marius Bakke <address@hidden>
Date:   Tue Mar 20 00:03:05 2018 +0100

    Revert "build-system/meson: Use 'target-arm32?' for armhf-linux case."
    
    This requires adding (guix utils) to the build inputs, and causes too many
    rebuilds for now.
    
    This reverts commit 24a2e9172a2d8970d57865c6130f2184385183a3.
---
 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]