diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-12-22 12:29:26 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-12-22 12:29:26 +0000 |
commit | d35bebe609ed5a8a99039e2189040324a4d1ddff (patch) | |
tree | 5fbbe3aa02020297aad0259a0d3dc3214504e341 /regress | |
parent | 8c8cbe61c6d7ed64cdde07ebd743f5d9069f13e6 (diff) |
Seems gcc4 whines about an empty file as well, so just unconditionally do
what we did for gcc3.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/libexec/ld.so/df_1_noopen/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/regress/libexec/ld.so/df_1_noopen/Makefile b/regress/libexec/ld.so/df_1_noopen/Makefile index 485b8719be4..d5353d6464a 100644 --- a/regress/libexec/ld.so/df_1_noopen/Makefile +++ b/regress/libexec/ld.so/df_1_noopen/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2013/08/06 19:11:53 miod Exp $ +# $OpenBSD: Makefile,v 1.5 2013/12/22 12:29:25 kettenis Exp $ .include <bsd.own.mk> @@ -6,7 +6,6 @@ REGRESS_TARGETS = test .include <bsd.regress.mk> -.if ${COMPILER_VERSION} == "gcc3" EMPTYFILE= emptyfile CLEANFILES+= ${EMPTYFILE} LIB_DEPENDS= ${EMPTYFILE} @@ -15,10 +14,6 @@ LIB_DEPENDS= ${EMPTYFILE} # is not at least four bytes long! ${EMPTYFILE}: printf "\n\n\n\n" > $@ -.else -EMPTYFILE= /dev/null -LIB_DEPENDS= -.endif CLEANFILES+=lib1.so lib2.so lib3.so dlopen dlopen1 dlopen2 dlopen3 |