From cf0a154c4105abf42824007848f4e319ce23f987 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Tue, 6 Jan 2015 13:27:18 -0500 Subject: gnu: gawk: Fix target-system check. * gnu/packages/gawk.scm (gawk): Fix target-system check. --- gnu/packages/gawk.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/gawk.scm') diff --git a/gnu/packages/gawk.scm b/gnu/packages/gawk.scm index 996be7af4a..74d0720567 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 -;;; Copyright © 2014 Mark H Weaver +;;; Copyright © 2014, 2015 Mark H Weaver ;;; ;;; 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")))) -- cgit v1.2.3