diff options
author | 2013-12-22 12:29:25 +0000 | |
---|---|---|
committer | 2013-12-22 12:29:25 +0000 | |
commit | 338698b49e13643a7dfb423bb6e7c93cbda94a87 (patch) | |
tree | ec31dcb48c2545c8b47f81f49f81b05cd58c35b2 | |
parent | Use a bigger timeout, otherwise this test fails on some (not really) slower (diff) | |
download | wireguard-openbsd-338698b49e13643a7dfb423bb6e7c93cbda94a87.tar.xz wireguard-openbsd-338698b49e13643a7dfb423bb6e7c93cbda94a87.zip |
Seems gcc4 whines about an empty file as well, so just unconditionally do
what we did for gcc3.
-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 |