diff options
author | arkhan <arkhan@riseup.net> | 2022-09-12 21:45:05 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-09-14 20:56:45 +0200 |
commit | 4d510e5411f2522fe3feae60391ea91ba7decb9a (patch) | |
tree | ceb56199093b0dbf27f6bdb1f641d97ea2a7ac06 /gnu/packages | |
parent | 104be3d5e3d3cae996e49c4da237339e51f5ff33 (diff) | |
download | guix-4d510e5411f2522fe3feae60391ea91ba7decb9a.tar guix-4d510e5411f2522fe3feae60391ea91ba7decb9a.tar.gz |
gnu: dragon-drop: Correct PREFIX.
* gnu/packages/gtk.scm (dragon-drop)[#:make-flags]: Remove gratuitous “/bin”
from PREFIX.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 16049a8052..1ee2a99bf6 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2625,8 +2625,7 @@ shell scripts. Example of how to use @code{yad} can be consulted at #:make-flags (list (string-append "CC=" ,(cc-for-target)) ;; makefile uses PREFIX for the binary location - (string-append "PREFIX=" (assoc-ref %outputs "out") - "/bin")) + (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (delete 'configure)))) ; no configure script |