diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 10:34:42 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 10:38:37 +0200 |
| commit | f88be0a5b39ac70972041b717cf55f03b5084fc5 (patch) | |
| tree | 5034838bac482a0c2bfd1d988199f41ba5764ce7 /gnu | |
| parent | b1ac5682bf4d65b80c9cb556bcb9e32833d5db2c (diff) | |
gnu: libssh: Fix #:configure-flags for cross-compilation to 32-bit.
Partly fixes <https://issues.guix.gnu.org/78029>.
Fixes a build-side syntax error introduced in
b12d44dd5e35ac236bf3fbb5619b9c8c2f42c902.
* gnu/packages/ssh.scm (libssh)[arguments]: Fix syntax error
in #:configure-flags.
Reported-by: Yelninei <yelninei@tutamail.com>
Change-Id: Ic50731806be7f0106928a9f8a2ec4b09c496f44a
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ssh.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 5f0b3e2a6a9..829dd4ec0ce 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2012-2023, 2025 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> | 3 | ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> |
| 4 | ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> | 4 | ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> |
| 5 | ;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner <efraim@flashner.co.il> | 5 | ;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner <efraim@flashner.co.il> |
| @@ -164,9 +164,9 @@ file names. | |||
| 164 | "-DUNIT_TESTING=ON" | 164 | "-DUNIT_TESTING=ON" |
| 165 | #$@(if (and (%current-target-system) | 165 | #$@(if (and (%current-target-system) |
| 166 | (not (target-64bit?))) | 166 | (not (target-64bit?))) |
| 167 | #~(list (string-append | 167 | #~((string-append |
| 168 | "-DCMAKE_C_FLAGS=-g -O2" | 168 | "-DCMAKE_C_FLAGS=-g -O2" |
| 169 | " -Wno-incompatible-pointer-types")) | 169 | " -Wno-incompatible-pointer-types")) |
| 170 | #~())) | 170 | #~())) |
| 171 | #:phases | 171 | #:phases |
| 172 | #~(modify-phases %standard-phases | 172 | #~(modify-phases %standard-phases |
