gnu: arc-icon-theme: Fix build.
* gnu/packages/gnome.scm (arc-icon-theme)[arguments]: Do not run configure during the bootstrap phase.
This commit is contained in:
parent
737d1b3cd6
commit
9e1ede95df
|
@ -6541,6 +6541,14 @@ simple and consistent.")
|
||||||
(base32
|
(base32
|
||||||
"1ya1cqvv8q847c0rpcg6apzky87q3h04y8jz5nmi52qk6kg8si0b"))))
|
"1ya1cqvv8q847c0rpcg6apzky87q3h04y8jz5nmi52qk6kg8si0b"))))
|
||||||
(build-system gnu-build-system)
|
(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
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
|
|
Loading…
Reference in New Issue