[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: freefall: Fix compilation error.
From: |
Efraim Flashner |
Subject: |
01/01: gnu: freefall: Fix compilation error. |
Date: |
Sat, 21 Apr 2018 16:05:28 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit c80629e7c2840c72effe398b351af9038f9cd44a
Author: Efraim Flashner <address@hidden>
Date: Sat Apr 21 23:04:11 2018 +0300
gnu: freefall: Fix compilation error.
* gnu/packages/linux.scm (freefall)[arguments]: Add make-flag to set
CC=gcc.
---
gnu/packages/linux.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index e28f09f..1d9585e 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3307,7 +3307,8 @@ disks and SD cards. This package provides the userland
utilities.")
(substitute* "freefall.c"
(("alarm\\(2\\)") "alarm(5)")))))
#:make-flags (list (string-append "PREFIX="
- (assoc-ref %outputs "out")))
+ (assoc-ref %outputs "out"))
+ "CC=gcc")
#:tests? #f)) ;no tests
(home-page (package-home-page linux-libre))
(synopsis "Free-fall protection for spinning laptop hard drives")