diff options
author | wosch <wosch@FreeBSD.org> | 1996-09-01 16:03:28 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-09-01 16:03:28 +0000 |
commit | 4f92cd3d5d8773a89125bfd55ad414bd6548a8ca (patch) | |
tree | c8ec01c33454be7a81683a8dab473e3a0f143a30 | |
parent | 4467ad1508b9a691c7138439c3c0bc038601edf1 (diff) | |
download | FreeBSD-src-4f92cd3d5d8773a89125bfd55ad414bd6548a8ca.zip FreeBSD-src-4f92cd3d5d8773a89125bfd55ad414bd6548a8ca.tar.gz |
Fix to work with obj directories: -I. -> -I${.CURDIR}
Submitted by: Bruce
-rw-r--r-- | usr.bin/locate/locate/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/locate/locate/Makefile b/usr.bin/locate/locate/Makefile index 644ad58..b752bbb 100644 --- a/usr.bin/locate/locate/Makefile +++ b/usr.bin/locate/locate/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.1 1996/08/29 22:39:41 wosch Exp wosch $ +# $Id: Makefile,v 1.6 1996/08/31 23:14:51 wosch Exp $ PROG= locate SRCS= util.c locate.c -CFLAGS+= -I. -DMMAP -O2 # -DDEBUG +CFLAGS+= -I${.CURDIR} -DMMAP # -DDEBUG (print time) -O2 (10% faster) MAN1= locate.1 MAN8= locate.updatedb.8 SCRIPTS= updatedb mklocatedb concatdb |