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/game-development.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/game-development.scm')
| -rw-r--r-- | gnu/packages/game-development.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index ba68f248419..42229437bf5 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm | |||
| @@ -3684,7 +3684,7 @@ utilities frequently used in roguelikes.") | |||
| 3684 | (list #:tests? #f ; No tests. | 3684 | (list #:tests? #f ; No tests. |
| 3685 | #:configure-flags | 3685 | #:configure-flags |
| 3686 | ;; Needed to fix 32bit builds. | 3686 | ;; Needed to fix 32bit builds. |
| 3687 | #~(if (not #$(target-64bit?)) | 3687 | #~(if #$(target-32bit?) |
| 3688 | (list "-DCMAKE_CXX_FLAGS=-D_FILE_OFFSET_BITS=64") | 3688 | (list "-DCMAKE_CXX_FLAGS=-D_FILE_OFFSET_BITS=64") |
| 3689 | '()) | 3689 | '()) |
| 3690 | #:phases | 3690 | #:phases |
