gnu: stress-make: Use INVOKE.
* gnu/packages/debug.scm (stress-make)[arguments]: Use INVOKE.master
parent
75ac5e20bc
commit
4aa266a0c6
|
@ -290,7 +290,7 @@ down the road.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'unpack-make
|
(add-after 'unpack 'unpack-make
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(zero? (system* "tar" "xf" (assoc-ref inputs "make-source")))))
|
(invoke "tar" "xf" (assoc-ref inputs "make-source"))))
|
||||||
(add-after 'unpack-make 'set-default-shell
|
(add-after 'unpack-make 'set-default-shell
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Taken mostly directly from (@ (gnu packages base) gnu-make)
|
;; Taken mostly directly from (@ (gnu packages base) gnu-make)
|
||||||
|
@ -300,7 +300,7 @@ down the road.")
|
||||||
(which "sh"))))))
|
(which "sh"))))))
|
||||||
(add-before 'configure 'repack-make
|
(add-before 'configure 'repack-make
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "tar" "cJf" "./make.tar.xz" ,make-dir))))))))
|
(invoke "tar" "cJf" "./make.tar.xz" ,make-dir)))))))
|
||||||
(home-page "https://github.com/losalamos/stress-make")
|
(home-page "https://github.com/losalamos/stress-make")
|
||||||
(synopsis "Expose race conditions in Makefiles")
|
(synopsis "Expose race conditions in Makefiles")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue