guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: gawk: Fix target-system check.


From: Mark H. Weaver
Subject: 06/08: gnu: gawk: Fix target-system check.
Date: Tue, 06 Jan 2015 18:42:47 +0000

mhw pushed a commit to branch core-updates
in repository guix.

commit cf0a154c4105abf42824007848f4e319ce23f987
Author: Mark H Weaver <address@hidden>
Date:   Tue Jan 6 13:27:18 2015 -0500

    gnu: gawk: Fix target-system check.
    
    * gnu/packages/gawk.scm (gawk): Fix target-system check.
---
 gnu/packages/gawk.scm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gawk.scm b/gnu/packages/gawk.scm
index 996be7a..74d0720 100644
--- a/gnu/packages/gawk.scm
+++ b/gnu/packages/gawk.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <address@hidden>
-;;; Copyright © 2014 Mark H Weaver <address@hidden>
+;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -59,7 +59,7 @@
 
                     ;; XXX FIXME prerelease libtool fails on MIPS in the
                     ;; absence of /usr/bin/file.
-                    ,@(if (equal? "mips64el-linux" (or (%current-target-system)
+                    ,@(if (string-prefix? "mips64" (or (%current-target-system)
                                                        (%current-system)))
                           '((substitute* "extension/configure"
                               (("/usr/bin/file") (which "file"))))



reply via email to

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