diff options
Diffstat (limited to 'src/org')
-rw-r--r-- | src/org/euandre/packages.scm | 10 |
1 files changed, 5 insertions, 5 deletions
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)))) |