From c973d5e76c1ae4457b45ab10c9203c9424fc4c48 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 2 Feb 2002 00:20:32 +0000 Subject: [PATCH] Fixed world breakage in previous commit. The generated headers are in the current directory which is rarely ${.CURDIR}. --- lib/libstand/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libstand/Makefile b/lib/libstand/Makefile index 962e7397dd47..184f6900a042 100644 --- a/lib/libstand/Makefile +++ b/lib/libstand/Makefile @@ -116,7 +116,7 @@ SRCS+= _setjmp.S # decompression functionality from libbz2 .PATH: ${.CURDIR}/../../contrib/bzip2 -CFLAGS+=-I${.CURDIR} -DBZ_NO_STDIO -DBZ_NO_COMPRESS +CFLAGS+=-I. -DBZ_NO_STDIO -DBZ_NO_COMPRESS SRCS+= _bzlib.c _crctable.c _decompress.c _huffman.c _randtable.c _bzlib.h \ _bzlib_private.h