guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: build-system: clojure: Use the standard error regarding cross bui


From: guix-commits
Subject: 02/04: build-system: clojure: Use the standard error regarding cross builds.
Date: Mon, 20 Nov 2023 10:08:30 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 98ae8076435c74f90ad8ad30557963d2caa273c2
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Mon Oct 30 08:43:34 2023 +0000

    build-system: clojure: Use the standard error regarding cross builds.
    
    Rather than raising an error in the build system.
    
    * guix/build-system/clojure.scm (lower): Return #f for cross builds, rather
    than calling error.
    
    Change-Id: Id97c8f5140f55fe2c52ccb0db36fd993922c6a7e
---
 guix/build-system/clojure.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/clojure.scm b/guix/build-system/clojure.scm
index fb897356bc..037fcaf21d 100644
--- a/guix/build-system/clojure.scm
+++ b/guix/build-system/clojure.scm
@@ -83,8 +83,8 @@
                             #:clojure #:jdk #:zip)))
 
     (if target
-        (error "No cross-compilation for clojure-build-system yet: LOWER"
-               target) ; FIXME
+        #f                              ; FIXME: No cross-compilation for
+                                        ; clojure-build-system yet
         (bag (name name)
              (system system)
              (host-inputs `(,@(if source



reply via email to

[Prev in Thread] Current Thread [Next in Thread]