me
/
guix
Archived
1
0
Fork 0

gnu: xf86-video-freedreno: Fix building.

* gnu/packages/xorg.scm (xf86-video-freedreno)[arguments]: Override the
'boostrap phase.
Efraim Flashner 2021-08-10 16:13:07 +03:00
parent f0ad43dfdd
commit 1f18f18e85
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 1 deletions

View File

@ -2920,7 +2920,13 @@ framebuffer device.")
`(#:configure-flags
(list (string-append "--with-xorg-conf-dir="
(assoc-ref %outputs "out")
"/share/X11/xorg.conf.d"))))
"/share/X11/xorg.conf.d"))
#:phases
(modify-phases %standard-phases
(replace 'bootstrap
(lambda _
;; autogen.sh calls configure unconditionally.
(invoke "autoreconf" "-vfi"))))))
(home-page "https://www.x.org/wiki/")
(synopsis "Adreno video driver for X server")
(description