diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-16 06:00:34 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-16 06:00:51 +0200 |
commit | 7f73ca75fac1308ec6987d5b20987e97695f1325 (patch) | |
tree | 65563ba7d56d23fdfe24a1e17150e5c163a96d82 | |
parent | e4089b897b195bce1d28efc4c4e3ca847e15ae89 (diff) | |
download | guix-7f73ca75fac1308ec6987d5b20987e97695f1325.tar.gz |
gnu: cpuid: Fix typo.
This is a left-behind fixup commit to 2bfe99b11ac89ea723fd5d8aed9d6cdac78d71d4. * gnu/packages/linux.scm (cpuid)[arguments]: Quasiquote.
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index faeaf5dcea..9731b6fed6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -6437,7 +6437,7 @@ available in the kernel Linux.") "19jnkh57f979b78ak5mpxmdvnkgc33r55cw9shgd2hc380b3zi8k")))) (build-system gnu-build-system) (arguments - '(#:make-flags + `(#:make-flags (list (string-append "CC=" ,(cc-for-target))) #:tests? #f ; no tests #:phases (modify-phases %standard-phases |