guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/07: gnu: hyperrogue: Fix build failure.


From: guix-commits
Subject: 06/07: gnu: hyperrogue: Fix build failure.
Date: Fri, 3 Apr 2020 12:29:03 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 18caa6f528b09d63ac26ba53f78e4c35fed5b317
Author: Marius Bakke <address@hidden>
AuthorDate: Fri Apr 3 18:18:54 2020 +0200

    gnu: hyperrogue: Fix build failure.
    
    * gnu/packages/games.scm (hyperrogue)[arguments]: Do not assume CPATH is 
set.
---
 gnu/packages/games.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 7555a0d..f0f1886 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4226,7 +4226,7 @@ throwing people around in pseudo-randomly generated 
buildings.")
          (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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]