gnu: bmake: Update to 20230321.
* gnu/packages/build-tools.scm (bmake): Update to 20230321. Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
e99009ad09
commit
c1fb1ac45b
1 changed files with 9 additions and 4 deletions
|
@ -171,14 +171,14 @@ generate such a compilation database.")
|
||||||
(define-public bmake
|
(define-public bmake
|
||||||
(package
|
(package
|
||||||
(name "bmake")
|
(name "bmake")
|
||||||
(version "20211212")
|
(version "20230321")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://www.crufty.net/ftp/pub/sjg/bmake-" version ".tar.gz"))
|
"http://www.crufty.net/ftp/pub/sjg/bmake-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "17lywks7fy5538vwyyvbvxcq5mgnd5si7f2qgw85sgqj7mdr4xdd"))))
|
(base32 "0ml2z9ij674bd4227566n0547pcpxpmimp4xw4hj52kl1265czgd"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list bash-minimal))
|
(list bash-minimal))
|
||||||
|
@ -190,14 +190,19 @@ generate such a compilation database.")
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'configure 'fix-test ; fix from nixpkgs
|
(add-after 'configure 'fix-test ; fix from nixpkgs
|
||||||
(lambda _
|
(lambda* (#:key inputs native-inputs #:allow-other-keys)
|
||||||
(substitute* "unit-tests/unexport-env.mk"
|
(substitute* "unit-tests/unexport-env.mk"
|
||||||
(("PATH=\t/bin:/usr/bin:/sbin:/usr/sbin")
|
(("PATH=\t/bin:/usr/bin:/sbin:/usr/sbin")
|
||||||
"PATH := ${PATH}"))))
|
"PATH := ${PATH}"))
|
||||||
|
(substitute* '("unit-tests/opt-keep-going-indirect.mk"
|
||||||
|
"unit-tests/opt-keep-going-indirect.exp")
|
||||||
|
(("false")
|
||||||
|
(search-input-file (or native-inputs inputs) "/bin/false")))))
|
||||||
(add-after 'configure 'remove-fail-tests
|
(add-after 'configure 'remove-fail-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "unit-tests/Makefile"
|
(substitute* "unit-tests/Makefile"
|
||||||
(("cmd-interrupt") "")
|
(("cmd-interrupt") "")
|
||||||
|
(("deptgt-interrupt") "")
|
||||||
(("varmod-localtime") "")))))
|
(("varmod-localtime") "")))))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list
|
#~(list
|
||||||
|
|
Reference in a new issue