Archived
1
0
Fork 0

gnu: make-u-boot-package: Fix indentation.

* gnu/packages/bootloaders.scm (make-u-boot-package): Fix indentation.
This commit is contained in:
Maxim Cournoyer 2022-12-01 11:29:36 -05:00
parent 8d1d209ffe
commit e99dc7353f
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -735,7 +735,7 @@ optional DEFCONFIG file and optional configuration changes from CONFIGS."
(apply invoke "make" `(,@make-flags ,config-name)) (apply invoke "make" `(,@make-flags ,config-name))
(verify-config ".config" config-file)) (verify-config ".config" config-file))
(begin (begin
(display "Invalid board name. Valid board names are:" (display "invalid board name; valid board names are:"
(current-error-port)) (current-error-port))
(let ((suffix-len (string-length "_defconfig")) (let ((suffix-len (string-length "_defconfig"))
(entries (scandir "configs"))) (entries (scandir "configs")))
@ -746,7 +746,7 @@ optional DEFCONFIG file and optional configuration changes from CONFIGS."
(string-drop-right file-name (string-drop-right file-name
suffix-len)))) suffix-len))))
(sort entries string-ci<))) (sort entries string-ci<)))
(error "Invalid boardname ~s." ,board)))))) (error "invalid boardname ~s" ,board))))))
(add-after 'configure 'disable-tools-libcrypto (add-after 'configure 'disable-tools-libcrypto
;; Disable libcrypto due to GPL and OpenSSL license ;; Disable libcrypto due to GPL and OpenSSL license
;; incompatibilities ;; incompatibilities