diff options
-rw-r--r-- | gnu/packages/acl.scm | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/gnu/packages/acl.scm b/gnu/packages/acl.scm index ef15022566..cbe14c98ae 100644 --- a/gnu/packages/acl.scm +++ b/gnu/packages/acl.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org> +;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -39,27 +40,18 @@ "08qd9s3wfhv0ajswsylnfwr5h0d7j9d4rgip855nrh400nxp940p")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:tests? #f ; FIXME: Investigate test suite failures + #:phases (alist-cons-after 'configure 'patch-makefile-SHELL (lambda _ (patch-makefile-SHELL "include/buildmacros")) - ,(if (%current-target-system) - '%standard-phases - '(alist-replace 'check - (lambda _ - (system* "make" "tests" "-C" "test") - - ;; XXX: Ignore the test result since this is - ;; dependent on the underlying file system. - #t) - %standard-phases))))) - (inputs `(("attr" ,attr) - - ;; Perl is needed to run tests; remove it from cross builds. - ,@(if (%current-target-system) - '() - `(("perl" ,perl))))) + (alist-replace + 'install + (lambda _ + (zero? (system* "make" "install" "install-lib"))) + %standard-phases)))) + (inputs `(("attr" ,attr))) (native-inputs `(("gettext" ,gnu-gettext))) |