diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-21 19:45:42 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-22 00:20:12 +0200 |
commit | 1e501ffeaa2aa868b2f7d2ebea41501d843d5025 (patch) | |
tree | ecd6022938ef79d35c2fd6b63257bb9a2655d41c /gnu | |
parent | a0c5dafcc35ecdd877dac12750b37852c3bcf001 (diff) | |
download | patches-1e501ffeaa2aa868b2f7d2ebea41501d843d5025.tar patches-1e501ffeaa2aa868b2f7d2ebea41501d843d5025.tar.gz |
gnu: dwm: Return #t from all phases.
* gnu/packages/video.scm (dwm)[arguments]: Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/suckless.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index a343e3cb6e..dbfaa29127 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -100,9 +100,8 @@ a custom raw video format with a simple container.") (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (zero? - (system* "make" "install" - (string-append "DESTDIR=" out) "PREFIX="))))) + (invoke "make" "install" + (string-append "DESTDIR=" out) "PREFIX=")))) (add-after 'build 'install-xsession (lambda* (#:key outputs #:allow-other-keys) ;; Add a .desktop file to xsessions. |