This is an automated email from the git hooks/post-receive script.
nckx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 89d8417 gnu: snooze: Fix installation destination.
89d8417 is described below
commit 89d8417b371f3918f0508bbc561675ec100a6add
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Wed Oct 27 00:12:34 2021 +0200
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 <[email protected]>
---
gnu/packages/suckless.scm | 1 -
1 file changed, 1 deletion(-)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index e80ed2b..b4855ec 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))