diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-27 00:12:34 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-27 00:13:09 +0200 |
commit | 89d8417b371f3918f0508bbc561675ec100a6add (patch) | |
tree | 6373a30e04be0330fd7c1f76777a26f24802e3b6 /gnu/packages/suckless.scm | |
parent | ebc274063716a3a9471f51abb526d693c06b9f63 (diff) | |
download | guix-89d8417b371f3918f0508bbc561675ec100a6add.tar.gz |
gnu: snooze: Fix installation destination.
* gnu/packages/suckless.scm (snooze)[arguments]: Remove bogus $(DESTDIR) from #:make-flags to install in $(PREFIX). Reported by Christopher Howard <christopher@librehacker.com>
Diffstat (limited to 'gnu/packages/suckless.scm')
-rw-r--r-- | gnu/packages/suckless.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index e80ed2bca0..b4855ec0a2 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -923,7 +923,6 @@ chat output in the background.") `(#:tests? #f ; There are no tests. #:make-flags (list (string-append "CC=" ,(cc-for-target)) - (string-append "DESTDIR=" %output) ;; Set prefix path to root of package path in store instead ;; of /usr/local. (string-append "PREFIX=" %output)) |