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)
|
||||
(add-before 'build 'set-permissions
|
||||
(lambda _
|
||||
(zero? (system* "chmod" "a+w" "utils/isohybrid.in"))))
|
||||
(invoke "chmod" "a+w" "utils/isohybrid.in")))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
(substitute* "tests/unittest/include/unittest/unittest.h"
|
||||
;; Don't look up headers under /usr.
|
||||
(("/usr/include/") ""))
|
||||
(zero? (system* "make" "unittest")))))))
|
||||
(invoke "make" "unittest"))))))
|
||||
(home-page "http://www.syslinux.org")
|
||||
(synopsis "Lightweight Linux bootloader")
|
||||
(description "Syslinux is a lightweight Linux bootloader.")
|
||||
|
|
Loading…
Reference in New Issue