gnu: syslinux: Use INVOKE.
* gnu/packages/bootloaders.scm (syslinux)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
5a5d3e3563
commit
60d8db74c6
|
@ -304,14 +304,14 @@ menu to select one of the installed operating systems.")
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-before 'build 'set-permissions
|
(add-before 'build 'set-permissions
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "chmod" "a+w" "utils/isohybrid.in"))))
|
(invoke "chmod" "a+w" "utils/isohybrid.in")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "CC" "gcc")
|
(setenv "CC" "gcc")
|
||||||
(substitute* "tests/unittest/include/unittest/unittest.h"
|
(substitute* "tests/unittest/include/unittest/unittest.h"
|
||||||
;; Don't look up headers under /usr.
|
;; Don't look up headers under /usr.
|
||||||
(("/usr/include/") ""))
|
(("/usr/include/") ""))
|
||||||
(zero? (system* "make" "unittest")))))))
|
(invoke "make" "unittest"))))))
|
||||||
(home-page "http://www.syslinux.org")
|
(home-page "http://www.syslinux.org")
|
||||||
(synopsis "Lightweight Linux bootloader")
|
(synopsis "Lightweight Linux bootloader")
|
||||||
(description "Syslinux is a lightweight Linux bootloader.")
|
(description "Syslinux is a lightweight Linux bootloader.")
|
||||||
|
|
Loading…
Reference in New Issue