diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-05-09 18:43:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-05-09 18:43:29 +0000 |
commit | 0e4e0b76e372b2ea52ebce81f4498bc0eba9045b (patch) | |
tree | ece7e8b0cfb68bb870be71d502940192fba71a4a /regress | |
parent | 23d2fc67f7eb4201b60e46921bd1b7079647b0d5 (diff) |
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@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libevent/Makefile | 4 |
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} |