summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2008-05-09 18:43:28 +0000
committerbrad <brad@openbsd.org>2008-05-09 18:43:28 +0000
commitd22fb3048e1c6146260db6e309a93c00e79e9959 (patch)
tree91f992f6cac2316cd6ce86214becdd9077a401ad
parentunbreak (diff)
downloadwireguard-openbsd-d22fb3048e1c6146260db6e309a93c00e79e9959.tar.xz
wireguard-openbsd-d22fb3048e1c6146260db6e309a93c00e79e9959.zip
Fix the include path passed via CFLAGS so that this will compile.. one
too many ../ in the path. Somehow managed to get a symlink in the right spot that made this work as it was. Pointed out by david@
-rw-r--r--regress/lib/libevent/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libevent/Makefile b/regress/lib/libevent/Makefile
index 5410059bf15..2409ede4ae1 100644
--- a/regress/lib/libevent/Makefile
+++ b/regress/lib/libevent/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.5 2008/05/04 21:14:32 brad Exp $
+# $OpenBSD: Makefile,v 1.6 2008/05/09 18:43:28 brad Exp $
PROG= eventtest
LDADD= -levent
DPADD= ${LIBEVENT}
-CFLAGS+= -I${.CURDIR}/../../../../lib/libevent
+CFLAGS+= -I${.CURDIR}/../../../lib/libevent
REGRESS_TARGETS= eventtest-select eventtest-kqueue eventtest-poll
.PHONY: ${REGRESS_TARGETS}