[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: acpica: Update to 20171110.
From: |
Tobias Geerinckx-Rice |
Subject: |
02/03: gnu: acpica: Update to 20171110. |
Date: |
Tue, 5 Dec 2017 19:32:14 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 4a462aa7f410e4f88bbe7fb1bac769805bef1baa
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Dec 5 18:57:43 2017 +0100
gnu: acpica: Update to 20171110.
* gnu/packages/admin.scm (acpica): Update to 20171110.
[arguments]: Add "CC=gcc".
---
gnu/packages/admin.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index dbc80a5..7f62f30 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1081,7 +1081,7 @@ module slots, and the list of I/O ports (e.g. serial,
parallel, USB).")
(define-public acpica
(package
(name "acpica")
- (version "20150410")
+ (version "20171110")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1089,12 +1089,13 @@ module slots, and the list of I/O ports (e.g. serial,
parallel, USB).")
version ".tar.gz"))
(sha256
(base32
- "0q1fjwkyw9x6gsva6fd0zbn7ly4fx0ha4853f416np9kf2irillw"))))
+ "08g83qvhfx04vzb3f3pfpkp0w601v6csjzdv7z1vjzz1k71h7yml"))))
(build-system gnu-build-system)
(native-inputs `(("flex" ,flex)
("bison" ,bison)))
(arguments
'(#:make-flags (list (string-append "PREFIX=" %output)
+ "CC=gcc"
"HOST=_LINUX"
"OPT_CFLAGS=-Wall -fno-strict-aliasing")
#:tests? #f ; no 'check' target.