diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-05 02:55:29 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-05 02:55:29 +0000 |
commit | 8d61aed2a3dc86e1ce771f2b5c76dd4a0d91bef4 (patch) | |
tree | df46b65fef3fd2c64a79b3c13d83d3af8edcfca1 /libexec/ftpd/Makefile | |
parent | 554ea1a4bf9e80c4a3c17b2af21b3672ca36ea02 (diff) |
include path fixes for gcc3.
tests otto@, okay millert@
Diffstat (limited to 'libexec/ftpd/Makefile')
-rw-r--r-- | libexec/ftpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 2cbf19615c3..d5ae617e5cb 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2002/01/25 06:33:23 mpech Exp $ +# $OpenBSD: Makefile,v 1.22 2004/01/05 02:55:28 espie Exp $ # $NetBSD: Makefile,v 1.13 1996/02/16 02:07:41 cgd Exp $ # @(#)Makefile 8.2 (Berkeley) 4/4/94 @@ -15,7 +15,7 @@ YFLAGS= LSDIR = ${.CURDIR}/../../bin/ls .PATH: ${LSDIR} SRCS += ls.c cmp.c print.c util.c -CFLAGS += -I${LSDIR} +CFLAGS += -I${.CURDIR} -I${LSDIR} # not really used CPPFLAGS+=-DINET6 |