diff options
| author | Dariqq <dariqq@posteo.net> | 2026-01-18 08:38:31 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-20 22:34:56 +0100 |
| commit | 3e9338b923912773db46277e98e14462d4a3fb34 (patch) | |
| tree | 7cc2b61e9ee0b0d39b51208dae158e68d338ce5b /gnu/packages/base.scm | |
| parent | aa69f0f3e87c22904f3f65b77ebbcb957b546d8f (diff) | |
gnu: Use (target-32bit?) to test for 32bit targets.
* gnu/packages/*.scm: Replace usage of target-64bit? when actually testing for
32bit targets.
* guix/utils.scm (target-hurd32?). Same.
Change-Id: If3ed2b82a1229b72b07fafc694eedc14080e5a04
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #5710
Diffstat (limited to 'gnu/packages/base.scm')
| -rw-r--r-- | gnu/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 31ad20e2ee9..21cc04772a8 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -273,7 +273,7 @@ implementation offers several extensions over the standard utility.") ;; https://lists.gnu.org/archive/html/bug-tar/2021-10/msg00007.html ;; tar-1.34 isn't aware of 64-bit time_t and upstream suggests ;; skipping the test for this release on 32-bit systems. - ((not (target-64bit?)) + ((target-32bit?) '(#:make-flags (list "TESTSUITEFLAGS= -k '!tricky time stamps'"))) (else '())) ;; XXX: 32-bit Hurd platforms don't support 64bit time_t |
