mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: hyperrogue: Fix build failure.
* gnu/packages/games.scm (hyperrogue)[arguments]: Do not assume CPATH is set.
This commit is contained in:
parent
ba66eec741
commit
18caa6f528
1 changed files with 1 additions and 1 deletions
|
@ -4226,7 +4226,7 @@ (define-public hyperrogue
|
|||
(add-after 'set-paths 'set-sdl-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "CPATH"
|
||||
(string-append (getenv "CPATH") ":"
|
||||
(string-append (or (getenv "CPATH") "") ":"
|
||||
(assoc-ref inputs "sdl-union")
|
||||
"/include/SDL"))))
|
||||
(replace 'configure
|
||||
|
|
Loading…
Reference in a new issue