[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: arc-icon-theme: Fix build.
From: |
julien lepiller |
Subject: |
02/02: gnu: arc-icon-theme: Fix build. |
Date: |
Tue, 19 Jun 2018 15:37:10 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit 9e1ede95df446f17df3c2164766545daeea472d3
Author: Julien Lepiller <address@hidden>
Date: Tue Jun 19 21:32:24 2018 +0200
gnu: arc-icon-theme: Fix build.
* gnu/packages/gnome.scm (arc-icon-theme)[arguments]: Do not run
configure during the bootstrap phase.
---
gnu/packages/gnome.scm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f66ac74..b5d8170 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)))