diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 02:32:34 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:11 -0400 |
commit | 2057ea6825161f4457cbfb63dc1c1afd2573129a (patch) | |
tree | cee176efb182c4d2166fb18e58e0ad37cd01b2a1 /gnu/packages/hurd.scm | |
parent | ac8281214f6a2891addebd9072e4f95e2b12b35c (diff) | |
download | patches-2057ea6825161f4457cbfb63dc1c1afd2573129a.tar patches-2057ea6825161f4457cbfb63dc1c1afd2573129a.tar.gz |
gnu: gnumach-headers: Use invoke.
* gnu/packages/hurd.scm (gnumach-headers)[arguments]: Use invoke in the
custom install phase.
Diffstat (limited to 'gnu/packages/hurd.scm')
-rw-r--r-- | gnu/packages/hurd.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm index a29e5bafd2..319c303b9a 100644 --- a/gnu/packages/hurd.scm +++ b/gnu/packages/hurd.scm @@ -60,8 +60,7 @@ (modify-phases %standard-phases (replace 'install (lambda _ - (zero? - (system* "make" "install-data")))) + (invoke "make" "install-data"))) (delete 'build)) ;; GNU Mach supports only IA32 currently, so cheat so that we can at |