gnu: hyperrogue: Fix build failure.
* gnu/packages/games.scm (hyperrogue)[arguments]: Do not assume CPATH is set.master
parent
ba66eec741
commit
18caa6f528
|
@ -4226,7 +4226,7 @@ throwing people around in pseudo-randomly generated buildings.")
|
||||||
(add-after 'set-paths 'set-sdl-paths
|
(add-after 'set-paths 'set-sdl-paths
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(setenv "CPATH"
|
(setenv "CPATH"
|
||||||
(string-append (getenv "CPATH") ":"
|
(string-append (or (getenv "CPATH") "") ":"
|
||||||
(assoc-ref inputs "sdl-union")
|
(assoc-ref inputs "sdl-union")
|
||||||
"/include/SDL"))))
|
"/include/SDL"))))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
|
|
Reference in New Issue