diff options
author | EuAndreh <eu@euandre.org> | 2023-03-28 11:23:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-28 11:23:50 -0300 |
commit | 5e2f9e90f7a74c9bc44daca42126319564770c05 (patch) | |
tree | ada49a7ab280330f16c01e58752323cef3b1b8a4 | |
parent | Makefile: Use official HTTP version of Git remote (diff) | |
download | package-repository-5e2f9e90f7a74c9bc44daca42126319564770c05.tar.gz package-repository-5e2f9e90f7a74c9bc44daca42126319564770c05.tar.xz |
src/bin/paku.in: Use gexps for #:make-flags
Diffstat (limited to '')
-rwxr-xr-x | src/bin/paku.in | 2 | ||||
-rw-r--r-- | src/org/euandre/packages.scm | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/bin/paku.in b/src/bin/paku.in index 2552927..449d8aa 100755 --- a/src/bin/paku.in +++ b/src/bin/paku.in @@ -349,7 +349,7 @@ sub emit_guix() { print <<~EOF; (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #\$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) diff --git a/src/org/euandre/packages.scm b/src/org/euandre/packages.scm index 8c97e57..c4c03cd 100644 --- a/src/org/euandre/packages.scm +++ b/src/org/euandre/packages.scm @@ -24,7 +24,7 @@ (list)) (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) @@ -53,7 +53,7 @@ config.") (list)) (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) @@ -82,7 +82,7 @@ config.") (list)) (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) @@ -110,7 +110,7 @@ re-arrange the input according to common picks.") (list)) (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) @@ -142,7 +142,7 @@ file in the repository.") guile-3.0)) (arguments (list - #:make-flags '(list (string-append "PREFIX=" %output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases (delete 'configure)))) |