diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-08-06 19:11:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-08-06 19:11:54 +0000 |
commit | 81a80cf18dfb0d2c181f37070df4c0bcee447b6f (patch) | |
tree | 2b540bea449476e38cd4184199337f3139843d9a /regress/gnu/egcs/gcc/Makefile | |
parent | 4deeb07029db0412704e811b0e924993fe415641 (diff) |
Remove support for COMPILER_VERSION == gcc2.
Change the logic depending upon COMPILER_VERSION everywhere, to assume gcc4
is the norm and to explicitely test for gcc3 when a different behaviour
is required.
No functional change intended. Be sure to `make install' in share/mk before
attempting to do anything.
Diffstat (limited to 'regress/gnu/egcs/gcc/Makefile')
-rw-r--r-- | regress/gnu/egcs/gcc/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/regress/gnu/egcs/gcc/Makefile b/regress/gnu/egcs/gcc/Makefile index 9c4f3f68a7e..83c35c70543 100644 --- a/regress/gnu/egcs/gcc/Makefile +++ b/regress/gnu/egcs/gcc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2010/05/10 18:20:31 drahn Exp $ +# $OpenBSD: Makefile,v 1.8 2013/08/06 19:11:53 miod Exp $ .include <bsd.own.mk> @@ -7,10 +7,8 @@ NOPROG= .if ${COMPILER_VERSION:L} == "gcc3" TESTDIR=${BSDSRCDIR}/gnu/usr.bin/gcc -.elif ${COMPILER_VERSION:L} == "gcc4" -TESTDIR=${BSDSRCDIR}/gnu/usr.bin/cc .else -TESTDIR=${BSDSRCDIR}/gnu/egcs/gcc +TESTDIR=${BSDSRCDIR}/gnu/usr.bin/cc .endif REGRESS_TARGETS=do-gcc |