diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 10:08:09 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-08 10:08:09 +0100 |
commit | 9c30cba431ccc36462f91652b624ae0068d77491 (patch) | |
tree | ed97b23ff9935be72f998a57bd2c500a4eccbe8c | |
parent | a1e83a9856100b7d1993ad7917e11d8bb37c2646 (diff) | |
download | gnu-guix-9c30cba431ccc36462f91652b624ae0068d77491.tar gnu-guix-9c30cba431ccc36462f91652b624ae0068d77491.tar.gz |
gnu: pcc: Use INVOKE.
* gnu/packages/c.scm (pcc)[arguments]: Use INVOKE and return #T
unconditionally.
-rw-r--r-- | gnu/packages/c.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index 83268e871c..d89b6ea00d 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2018 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz> ;;; @@ -160,8 +160,7 @@ standard.") `(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (zero? (system* "make" "-C" "cc/cpp" "test"))))))) + (lambda _ (invoke "make" "-C" "cc/cpp" "test") #t))))) (native-inputs `(("bison" ,bison) ("flex" ,flex))) |