diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 20:33:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 22:36:13 +0100 |
commit | 95906eee1813058e83b44f9f0f893481f8e34b33 (patch) | |
tree | 1dfe908a3366f2ac49c1a6e04a5101d017f0895e | |
parent | e8b9aaf0b167812dee6be26772837ef2a271a843 (diff) | |
download | gnu-guix-95906eee1813058e83b44f9f0f893481f8e34b33.tar gnu-guix-95906eee1813058e83b44f9f0f893481f8e34b33.tar.gz |
gnu: guile-ics: Remove custom bootstrap phase.
* gnu/packages/guile.scm (guile-ics)[arguments]: Remove.
-rw-r--r-- | gnu/packages/guile.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 8c55c749d8..133a338c6e 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015, 2017 Christopher Allan Webber <cwebber@dustycloud.org> ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co> -;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Erik Edrosa <erik.edrosa@gmail.com> ;;; Copyright © 2016 Eraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017 Alex Kost <alezost@gmail.com> @@ -860,14 +860,6 @@ provides tight coupling to Guix.") (base32 "0qjjvadr7gibdq9jvwkmlkb4afsw9n2shfj9phpiadinxk3p4m2g")))) (build-system gnu-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (add-after 'unpack 'autoreconf - (lambda _ - ;; Repository comes with a broken symlink - (delete-file "README") - (symlink "README.org" "README") - (zero? (system* "autoreconf" "-fi"))))))) (native-inputs `(("autoconf" ,autoconf-wrapper) ("automake" ,automake) |