diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-16 01:55:07 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-04-12 04:01:48 -0400 |
commit | 9feb4fd589d0068730bd3fe28cc5e847bd99122b (patch) | |
tree | 3047ddbb0787d05730110a911a97285975b2dc98 /gnu/packages/gcc.scm | |
parent | 61a815ebeba6168594dd08b2e77b9b86d4477c60 (diff) | |
download | patches-9feb4fd589d0068730bd3fe28cc5e847bd99122b.tar patches-9feb4fd589d0068730bd3fe28cc5e847bd99122b.tar.gz |
gnu: gnu-c-manual: Use invoke.
* gnu/packages/gcc.scm (gnu-c-manual)[arguments]: Use invoke.
Diffstat (limited to 'gnu/packages/gcc.scm')
-rw-r--r-- | gnu/packages/gcc.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 3fc95fa429..3a34ffbb37 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -909,9 +909,9 @@ effective code.") (delete 'check) (replace 'build (lambda _ - (zero? (system* "make" - "gnu-c-manual.info" - "gnu-c-manual.html")))) + (invoke "make" + "gnu-c-manual.info" + "gnu-c-manual.html"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |