diff options
author | obrien <obrien@FreeBSD.org> | 2002-02-28 23:12:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-02-28 23:12:44 +0000 |
commit | 46f27ab47e2ccf7cefc24cdb19b57351139f60c5 (patch) | |
tree | 12bf683ac72ee23695998af51b3a48e51fa19f18 /libexec | |
parent | d5da1ce9b26d9905daba1585d9f568879c7b2b9f (diff) | |
download | FreeBSD-src-46f27ab47e2ccf7cefc24cdb19b57351139f60c5.zip FreeBSD-src-46f27ab47e2ccf7cefc24cdb19b57351139f60c5.tar.gz |
CPP v3.1 has different rules for processing #lines directives. This
sometimes causes fewer directories to be searched for includes. Thus
we have to be more explicit in our search list.
Pointy at to: GCC 3.1
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/lukemftpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/lukemftpd/Makefile b/libexec/lukemftpd/Makefile index 4da1835..dc65054 100644 --- a/libexec/lukemftpd/Makefile +++ b/libexec/lukemftpd/Makefile @@ -11,7 +11,7 @@ MAN= lukemftpd.8 ftpd.conf.5 ftpusers.5 SRCS= cmds.c conf.c ftpd.c ftpcmd.y popen.c WFORMAT= 0 -CFLAGS+= -I${.CURDIR} -I${LUKEMFTPD} +CFLAGS+= -I${.CURDIR} -I${LUKEMFTPD} -I${LUKEMFTPD}/src YFLAGS= LDADD= -lmd -lcrypt -lutil |