From 9ea458c57a1c539669e0976011215d021a79d614 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 24 Feb 2020 11:22:02 +0100 Subject: [PATCH] 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. --- guix/build-system/copy.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)