diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 12:56:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 12:56:22 +0100 |
commit | bc74e9e4cd409ec31a227ad3c6ddd1c45a3e5d36 (patch) | |
tree | b43ea1cd5bd2f45f32ab152da7377311019f82c2 /gnu | |
parent | e5ff963a6d89e4c4902e1f5ffeef2319b05d5d57 (diff) | |
download | patches-bc74e9e4cd409ec31a227ad3c6ddd1c45a3e5d36.tar patches-bc74e9e4cd409ec31a227ad3c6ddd1c45a3e5d36.tar.gz |
gnu: scsh: Remove custom bootstrap phase.
* gnu/packages/shells.scm (scsh)[arguments]: Remove autoreconf phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/shells.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 3e9d797e2c..38eeaa7831 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015 Jeff Mickey <j@codemac.net> ;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2016 Stefan Reichör <stefan@xsteve.at> -;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017, 2018 Nils Gillmann <ng0@n0.is> ;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> @@ -414,10 +414,7 @@ use of experts and novices alike.") "/rx"))) (delete-file-recursively "rx") (symlink rxpath "rx")) - #t)) - (add-after 'unpack 'autoreconf - (lambda _ - (invoke "autoreconf")))))) + #t))))) (inputs `(("scheme48" ,scheme48) ("scheme48-rx" ,scheme48-rx))) |