guix-patches
[Top][All Lists]
Advanced

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

[bug#57857] [PATCH] gnu: busybox: fix the cross build.


From: Maxime Devos
Subject: [bug#57857] [PATCH] gnu: busybox: fix the cross build.
Date: Fri, 16 Sep 2022 17:08:33 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.12.0



On 16-09-2022 14:35, 路辉 wrote:



+             (if tests?
+                 (apply invoke "make"
+                        ;; "V=1"
+                        "SKIP_KNOWN_BUGS=1"
+                        "SKIP_INTERNET_TESTS=1"
+                        "check" make-flags)
+                 #t)))

Can be simplified to

(when tests?
  (apply invoke "make"
          ;; "V=1"
          "SKIP_KNOWN_BUGS=1"
          "SKIP_INTERNET_TESTS=1"
          "check" make-flags))


+     `(#:tests? (if ,(%current-target-system) #f #t)

That's the default, no need to mention it again here.

+       #:make-flags
+       (let ((target ,(%current-target-system)))
+         (if target
+             (list (string-append "CROSS_COMPILE=" target "-"))
+             (list)))

Can be simplified:

#:make-flags
,(let ((target ,(%current-target-system)))
   (if target
       #~(list (string-append "CROSS_COMPILE=" ,target))
       #~'()))

(the #~ makes the phasing more explicit, if you go for that, I recommend turning the arguments into (arguments (list #:phases #~(modify-phases ...) #:make-flags ...)), instead of using ` / , , to remain consistent.)

Greetings,
Maxime

Attachment: OpenPGP_0x49E3EE22191725EE.asc
Description: OpenPGP public key

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

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