gnu: xf86-video-intel: Fix error during bootstrap.

* gnu/packages/xorg.scm (xf86-video-intel)[arguments]: Add 'pre-bootstrap'
phase.
master
Mark H Weaver 2018-03-24 23:26:34 -04:00
parent acfa777e8a
commit 5cdad3ee86
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 7 additions and 1 deletions

View File

@ -2942,7 +2942,13 @@ X server.")
(string-prefix? "x86_64-" system)))
%supported-systems))
(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/")
(synopsis "Intel video driver for X server")
(description