[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/22: gnu: linux-libre: Remove obsolete workaround.
From: |
guix-commits |
Subject: |
01/22: gnu: linux-libre: Remove obsolete workaround. |
Date: |
Sat, 15 Feb 2020 16:08:59 -0500 (EST) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit 4a894c2f096d39ef3a412576c120f0e6d09806d5
Author: Marius Bakke <address@hidden>
AuthorDate: Fri Feb 7 17:06:07 2020 +0100
gnu: linux-libre: Remove obsolete workaround.
* gnu/packages/linux.scm (make-linux-libre*)[arguments]: Do not change CPATH
or CROSS_CPATH.
---
gnu/packages/linux.scm | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 06ef1fa..7793bf4 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -684,27 +684,6 @@ for ARCH and optionally VARIANT, or #f if there is no such
configuration."
#t))
(replace 'configure
(lambda* (#:key inputs native-inputs target #:allow-other-keys)
- ;; On AArch64 (at least), we need to remove glibc headers from
- ;; CPATH (they are still available as "system headers"), so that
- ;; the kernel can override uint64_t. See
- ;; <https://bugs.gnu.org/37593>. This is also true when
- ;; cross-compiling, except in that case, cross-libc must be
- ;; removed from CROSS_CPATH.
- (let ((var ,(if (%current-target-system)
- "CROSS_CPATH"
- "CPATH"))
- (libc ,(if (%current-target-system)
- "cross-libc"
- "libc")))
- (setenv var
- (string-join
- (remove
- (cut string-prefix? (assoc-ref inputs libc) <>)
- (string-split (getenv var) #\:))
- ":"))
- (format #t "environment variable `~a' changed to `~a'~%"
- var (getenv var)))
-
;; Avoid introducing timestamps
(setenv "KCONFIG_NOTIMESTAMP" "1")
(setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
- branch core-updates updated (bbd1e4e -> acb9277), guix-commits, 2020/02/15
- 01/22: gnu: linux-libre: Remove obsolete workaround.,
guix-commits <=
- 02/22: gnu: efivar: Remove obsolete workaround., guix-commits, 2020/02/15
- 03/22: gnu: efibootmgr: Remove obsolete workaround., guix-commits, 2020/02/15
- 04/22: gnu: linux-libre-headers: Update to 5.4.20., guix-commits, 2020/02/15
- 05/22: gnu: dnsmasq: Fix build with linux-libre-headers >= 5.2., guix-commits, 2020/02/15
- 06/22: gnu: binutils: Update to 2.34., guix-commits, 2020/02/15
- 09/22: gnu: libfaketime: Fix build with glibc 2.31., guix-commits, 2020/02/15
- 11/22: gnu: isl: Move the static library to a separate output., guix-commits, 2020/02/15
- 12/22: gnu: python2-more-itertools: Do not depend on 'python2-minimal'., guix-commits, 2020/02/15
- 13/22: gnu: OpenBLAS: Update to 0.3.8., guix-commits, 2020/02/15
- 08/22: gnu: glibc: Update to 2.31., guix-commits, 2020/02/15