diff options
author | rillig <rillig@pkgsrc.org> | 2006-05-10 17:35:58 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-05-10 17:35:58 +0000 |
commit | a103e6d209878f422aab27f11f355ae14f70f424 (patch) | |
tree | b3fd34dc193f720acd472d7fbffbc23d393da96e /regress | |
parent | 8e57697238c46106dc4bdd78757e9cbfa5a56307 (diff) | |
download | pkgsrc-a103e6d209878f422aab27f11f355ae14f70f424.tar.gz |
Corrected the expected output for Make version netbsd-2005*.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/make-quoting/files/bug1.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/regress/make-quoting/files/bug1.mk b/regress/make-quoting/files/bug1.mk index 1117cddcf00..33a1c456a4d 100644 --- a/regress/make-quoting/files/bug1.mk +++ b/regress/make-quoting/files/bug1.mk @@ -1,4 +1,4 @@ -# $NetBSD: bug1.mk,v 1.2 2005/05/15 23:37:13 rillig Exp $ +# $NetBSD: bug1.mk,v 1.3 2006/05/10 17:35:58 rillig Exp $ # # This file demonstrates a parsing bug in make(1) from NetBSD-1.6.2 and # the current pkgsrc bmake. The make from NetBSD-2.99.15 has been fixed. @@ -33,7 +33,7 @@ OPTIONS_2:= ${OPTIONS_2:N${_popt_}} # <-- workaround, part 2 PASSED?= no # /usr/bin/make from NetBSD 2.99.15 or similar -.if !empty(MAKE_VERSION:Mnetbsd-2005*) && ${OPTIONS_1} == "a" +.if !empty(MAKE_VERSION:Mnetbsd-2005*) && ${OPTIONS_1} == "a d" PASSED= yes # /usr/bin/make from NetBSD 1.6.2 @@ -44,6 +44,8 @@ PASSED= yes .elif !empty(MAKE_VERSION:Mbmake-3.1.12*) && ${OPTIONS_1} == "a b c d}}" PASSED= yes +.else +PASSED= no (MAKE_VERSION=${MAKE_VERSION}) .endif .PHONY: all |