diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-24 01:42:37 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-24 04:56:23 +0200 |
commit | d9bcdfce29b07235772657d58399e16be1022ee5 (patch) | |
tree | d633e71f3cf9aa3ced07ad7d14bcdcdce9874c63 | |
parent | 94617bddb01b9e295f82a59550ee983341d59288 (diff) | |
download | patches-d9bcdfce29b07235772657d58399e16be1022ee5.tar patches-d9bcdfce29b07235772657d58399e16be1022ee5.tar.gz |
gnu: mongodb: Use INVOKE.
* gnu/packages/databases.scm (mongodb)[arguments]: Substitute INVOKE for
SYSTEM*.
-rw-r--r-- | gnu/packages/databases.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 7b483a207d..6ebbc281fd 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -503,10 +503,9 @@ applications.") #t)) (replace 'build (lambda _ - (zero? (apply system* - `("scons" + (apply invoke `("scons" ,@common-options - "mongod" "mongo" "mongos"))))) + "mongod" "mongo" "mongos")))) (replace 'check (lambda* (#:key tests? inputs #:allow-other-keys) (setenv "TZDIR" |