diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-26 20:21:40 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-26 23:13:54 +0100 |
commit | 27cd31e6a5f3cdc30741c837eb751707ff249d77 (patch) | |
tree | cce845fe508f1206b8243f107ecba53941b53d06 | |
parent | 7b67bb1fabfedc8f1542923054e40c49099ec013 (diff) | |
download | guix-27cd31e6a5f3cdc30741c837eb751707ff249d77.tar guix-27cd31e6a5f3cdc30741c837eb751707ff249d77.tar.gz |
gnu: open-adventure: Use INVOKE.
* gnu/packages/games.scm (open-adventure)[arguments]: Use INVOKE.
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3a80ba72c6..3466748c6e 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4816,7 +4816,7 @@ at their peak of economic growth and military prowess. (substitute* "Makefile" ((".adoc.6:" line) (string-append line " advent.adoc"))) - (zero? (system* "make" ".adoc.6")))) + (invoke "make" ".adoc.6"))) ;; There is no install target (replace 'install (lambda* (#:key outputs #:allow-other-keys) |