diff options
author | ryoon <ryoon@pkgsrc.org> | 2020-03-12 10:28:14 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2020-03-12 10:28:14 +0000 |
commit | 5de9bb6f009c9bfa5325af937c393fdd9eed1120 (patch) | |
tree | d35c14eef0fe954b9f6f669155961e30327315dd /devel | |
parent | c8c6aad223fbaeeabc840ccabe06f5abce8db28a (diff) | |
download | pkgsrc-5de9bb6f009c9bfa5325af937c393fdd9eed1120.tar.gz |
bison: Fix POSIX shell portability issue in Makefile.in
Diffstat (limited to 'devel')
-rw-r--r-- | devel/bison/distinfo | 3 | ||||
-rw-r--r-- | devel/bison/patches/patch-Makefile.in | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/bison/distinfo b/devel/bison/distinfo index 9dbabb2a4c5..eb036fe46a7 100644 --- a/devel/bison/distinfo +++ b/devel/bison/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.51 2019/10/23 12:17:33 triaxx Exp $ +$NetBSD: distinfo,v 1.52 2020/03/12 10:28:14 ryoon Exp $ SHA1 (bison-3.4.2.tar.xz) = 5aa25aad924da6eda6df03a697f59d85081c5551 RMD160 (bison-3.4.2.tar.xz) = 00d7179f584b13b8b37c564c2d52d1d0b423b3c0 SHA512 (bison-3.4.2.tar.xz) = 00d2b37187b93100ec4b220ce2752d12ccf68f9d0d39b380d375d36dd8a22aa1d6e60156918f95e4493f9531c5d42d8fad38fd807307b491c1ca7ca4177823d9 Size (bison-3.4.2.tar.xz) = 2240532 bytes +SHA1 (patch-Makefile.in) = 5ddd993114f4c4d1ff16ff35e5b9541dd1427975 SHA1 (patch-lib_isnan.c) = 5b44fc6e2e97e36f91cd784bf3a38ad459fccdab diff --git a/devel/bison/patches/patch-Makefile.in b/devel/bison/patches/patch-Makefile.in new file mode 100644 index 00000000000..7515ec480e6 --- /dev/null +++ b/devel/bison/patches/patch-Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile.in,v 1.6 2020/03/12 10:28:14 ryoon Exp $ + +--- Makefile.in.orig 2019-09-12 15:41:48.000000000 +0000 ++++ Makefile.in +@@ -10936,7 +10936,7 @@ maintainer-check-posix: $(RUN_TESTSUITE_ + + .PHONY: maintainer-check-valgrind + maintainer-check-valgrind: $(RUN_TESTSUITE_deps) +- test 'x$(VALGRIND)' == x || \ ++ test 'x$(VALGRIND)' = x || \ + $(RUN_TESTSUITE) \ + PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q' \ + VALGRIND_OPTS="$(VALGRIND_OPTS)" |