mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 10:16:45 +01:00
gnu: xf86-video-freedreno: Fix building.
* gnu/packages/xorg.scm (xf86-video-freedreno)[arguments]: Override the 'boostrap phase.
This commit is contained in:
parent
f0ad43dfdd
commit
1f18f18e85
1 changed files with 7 additions and 1 deletions
|
@ -2920,7 +2920,13 @@ (define-public xf86-video-freedreno
|
|||
`(#: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
|
||||
|
|
Loading…
Reference in a new issue