GNU bug report logs -
#57857
[PATCH] gnu: busybox: fix the cross build.
Previous Next
Reported by: 路辉 <luhux76 <at> gmail.com>
Date: Fri, 16 Sep 2022 12:36:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
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
[OpenPGP_0x49E3EE22191725EE.asc (application/pgp-keys, attachment)]
[OpenPGP_signature (application/pgp-signature, attachment)]
This bug report was last modified 2 years and 297 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.