diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-02-24 11:22:02 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-02-24 11:22:02 +0100 |
commit | 9ea458c57a1c539669e0976011215d021a79d614 (patch) | |
tree | 25d12a3c47c811a943297582df09c55d603ced31 /guix | |
parent | 9b7f9e6f9ba8dc9ea8b99573e0862856ff1b9475 (diff) |
build-system: Fix copy-build-system default install plan.
* guix/build-system/copy.scm (copy-build): Set install-plan default value
to copy everything from source to the output.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build-system/copy.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build-system/copy.scm b/guix/build-system/copy.scm index 5fd0da4493..d1bf8fb654 100644 --- a/guix/build-system/copy.scm +++ b/guix/build-system/copy.scm @@ -78,7 +78,7 @@ (define* (copy-build store name inputs #:key (guile #f) (outputs '("out")) - (install-plan ''(("." (".") "./"))) + (install-plan ''(("." "./"))) (search-paths '()) (out-of-source? #t) (validate-runpath? #t) |