gnu: xf86-video-intel: Fix error during bootstrap.
* gnu/packages/xorg.scm (xf86-video-intel)[arguments]: Add 'pre-bootstrap' phase.
This commit is contained in:
parent
acfa777e8a
commit
5cdad3ee86
|
@ -2942,7 +2942,13 @@ X server.")
|
||||||
(string-prefix? "x86_64-" system)))
|
(string-prefix? "x86_64-" system)))
|
||||||
%supported-systems))
|
%supported-systems))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--with-default-accel=uxa")))
|
'(#:configure-flags '("--with-default-accel=uxa")
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-before 'bootstrap 'pre-bootstrap
|
||||||
|
(lambda _
|
||||||
|
;; Inhibit autogen.sh from running configure.
|
||||||
|
(setenv "NOCONFIGURE" "1")
|
||||||
|
#t)))))
|
||||||
(home-page "https://www.x.org/wiki/")
|
(home-page "https://www.x.org/wiki/")
|
||||||
(synopsis "Intel video driver for X server")
|
(synopsis "Intel video driver for X server")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue