diff options
author | David Krause <david@cvs.openbsd.org> | 2004-02-27 19:41:40 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2004-02-27 19:41:40 +0000 |
commit | 04cb244800418970aadb4214b1c855d6ba50605b (patch) | |
tree | 84acf192f9b32d4c3afa193845ce951c42c542c2 /libexec | |
parent | 500d9ba660a2a88e0c74efa2cc571b6abc7efc12 (diff) |
fix CFLAGS -I
ok deraadt@
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/spamlogd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamlogd/Makefile b/libexec/spamlogd/Makefile index ce40ac8143f..072b31fdc24 100644 --- a/libexec/spamlogd/Makefile +++ b/libexec/spamlogd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2004/02/26 07:28:55 beck Exp $ +# $OpenBSD: Makefile,v 1.2 2004/02/27 19:41:39 david Exp $ PROG= spamlogd SRCS= spamlogd.c MAN= spamlogd.8 -CFLAGS+= -Wall -Wstrict-prototypes -ansi -I ${.CURDIR}/../spamd +CFLAGS+= -Wall -Wstrict-prototypes -ansi -I${.CURDIR}/../spamd .include <bsd.prog.mk> |