diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-06-19 21:32:24 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-06-19 21:35:56 +0200 |
commit | 9e1ede95df446f17df3c2164766545daeea472d3 (patch) | |
tree | 78dac9b093b0a80861280b8e887ff61e0bf815d6 | |
parent | 737d1b3cd6fd583903428545cdd6bac0f5f6faab (diff) | |
download | guix-9e1ede95df446f17df3c2164766545daeea472d3.tar guix-9e1ede95df446f17df3c2164766545daeea472d3.tar.gz |
gnu: arc-icon-theme: Fix build.
* gnu/packages/gnome.scm (arc-icon-theme)[arguments]: Do not run
configure during the bootstrap phase.
-rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f66ac7446d..b5d8170ae2 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6541,6 +6541,14 @@ simple and consistent.") (base32 "1ya1cqvv8q847c0rpcg6apzky87q3h04y8jz5nmi52qk6kg8si0b")))) (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'disable-configure-during-bootstrap + (lambda _ + (substitute* "autogen.sh" + (("^\"\\$srcdir/configure\".*") "")) + #t))))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake))) |