From e543c8a2c6bdc8f129d02a4b48ff336d0e7b529b Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sun, 2 Oct 2016 15:16:21 +0200 Subject: gnu: bash-minimal: Remove 'move-development-files' phase. * gnu/packages/bash.scm (bash-minimal)[arguments]: Delete 'move-development-files' phase. (static-bash)[arguments]: Remove deletion of 'move-development-files' phase. --- gnu/packages/bash.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu/packages/bash.scm') diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index 3b175a5b3c..01168ade16 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -204,7 +204,11 @@ (define-public bash-minimal ,@(if (%current-target-system) '("bash_cv_job_control_missing=no") - '())))))))) + '()))) + ((#:phases phases) + `(modify-phases ,phases + ;; No loadable modules. + (delete 'move-development-files)))))))) (define-public static-bash ;; Statically-linked Bash that contains nothing but the 'bash' binary and @@ -229,10 +233,7 @@ (define-public static-bash (remove-store-references (string-append bin "/bash")) (delete-file (string-append bin "/bashbug")) (delete-file-recursively (string-append out "/share")) - #t))) - - ;; No loadable modules. - (delete 'move-development-files)))))))) + #t)))))))))) (define-public bash-completion (package -- cgit v1.2.3