mhw pushed a commit to branch core-updates
in repository guix.
commit 8809a15389dfd8ae226af04b102facc8874947f7
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 16 10:17:40 2018 -0400
gnu: bash: Return #t from 'install-sh-symlink' phase.
* gnu/packages/bash.scm (bash)[arguments]: Return #t from
'install-sh-symlink' phase.
---
gnu/packages/bash.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm
index 2cc0faf..52d93e8 100644
--- a/gnu/packages/bash.scm
+++ b/gnu/packages/bash.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès
<[email protected]>
-;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]>
+;;; Copyright © 2014, 2015, 2018 Mark H Weaver <[email protected]>
;;; Copyright © 2015, 2017 Leo Famulari <[email protected]>
;;; Copyright © 2016, 2017 Efraim Flashner <[email protected]>
;;;
@@ -164,7 +164,8 @@ number/base32-hash tuples, directly usable in the
'patch-series' form."
;; Add a `sh' -> `bash' link.
(let ((out (assoc-ref outputs "out")))
(with-directory-excursion (string-append out "/bin")
- (symlink "bash" "sh")))))
+ (symlink "bash" "sh")
+ #t))))
(add-after 'install 'move-development-files
(lambda* (#:key outputs #:allow-other-keys)