1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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
b12d44dd5e.

* gnu/packages/ssh.scm (libssh)[arguments]: Fix syntax error
in #:configure-flags.

Reported-by: Yelninei <yelninei@tutamail.com>
Change-Id: Ic50731806be7f0106928a9f8a2ec4b09c496f44a
This commit is contained in:
Ludovic Courtès
2025-04-24 10:34:42 +02:00
parent b1ac5682bf
commit f88be0a5b3

View File

@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012-2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2012-2023, 2025 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner <efraim@flashner.co.il>
@@ -164,9 +164,9 @@ file names.
"-DUNIT_TESTING=ON"
#$@(if (and (%current-target-system)
(not (target-64bit?)))
#~(list (string-append
"-DCMAKE_C_FLAGS=-g -O2"
" -Wno-incompatible-pointer-types"))
#~((string-append
"-DCMAKE_C_FLAGS=-g -O2"
" -Wno-incompatible-pointer-types"))
#~()))
#:phases
#~(modify-phases %standard-phases