civodul pushed a commit to branch master
in repository guix.

commit f88be0a5b39ac70972041b717cf55f03b5084fc5
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Apr 24 10:34:42 2025 +0200

    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 <[email protected]>
    Change-Id: Ic50731806be7f0106928a9f8a2ec4b09c496f44a
---
 gnu/packages/ssh.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 5f0b3e2a6a..829dd4ec0c 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012-2023 Ludovic Courtès <[email protected]>
+;;; Copyright © 2012-2023, 2025 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2013, 2014 Andreas Enge <[email protected]>
 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <[email protected]>
 ;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner 
<[email protected]>
@@ -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

Reply via email to