diff options
author | Mark H Weaver <[email protected]> | 2018-03-16 06:24:35 -0400 |
---|---|---|
committer | Mark H Weaver <[email protected]> | 2018-03-16 06:44:16 -0400 |
commit | a33391bd1e9e2909fc273bf8b1db2f41d68e038a (patch) | |
tree | 782f50e0397859b9c8bab0a377d58f2717de6b30 | |
parent | e9b23fe8bd7c78da1b7b1ed8fd86830260fdbb20 (diff) |
gnu: autoconf-wrapper: Return #t from the builder.
* gnu/packages/autotools.scm (autoconf-wrapper): Return #t from the builder.
-rw-r--r-- | gnu/packages/autotools.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 4a16a12c9b..de636cf9a0 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <[email protected]> ;;; Copyright © 2015 Mathieu Lirzin <[email protected]> ;;; Copyright © 2014 Manolis Fragkiskos Ragkousis <[email protected]> -;;; Copyright © 2015, 2017 Mark H Weaver <[email protected]> +;;; Copyright © 2015, 2017, 2018 Mark H Weaver <[email protected]> ;;; Copyright © 2016 David Thompson <[email protected]> ;;; Copyright © 2017 ng0 <[email protected]> ;;; Copyright © 2017 Efraim Flashner <[email protected]> @@ -193,7 +193,8 @@ exec ~a --no-auto-compile \"$0\" \"$@\" (patch-shebang "configure")) (exit (status:exit-val result)))) port))) - (chmod (string-append bin "/autoconf") #o555))))) + (chmod (string-append bin "/autoconf") #o555) + #t)))) ;; Do not show it in the UI since it's meant for internal use. (properties '((hidden? . #t))))) |