From 33afc2db3f60c6eeabdaf2c49b062dc104163ccd Mon Sep 17 00:00:00 2001 From: jmallett Date: Mon, 1 Jul 2002 18:20:48 +0000 Subject: [PATCH] DEBUG is a knob that means something else in FreeBSD, use LIBUFS_DEBUG to turn on tracing. --- lib/libufs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libufs/Makefile b/lib/libufs/Makefile index 04195ebb3e5a..fd38b171bafc 100644 --- a/lib/libufs/Makefile +++ b/lib/libufs/Makefile @@ -5,7 +5,7 @@ SRCS= block.c inode.c sblock.c type.c INCS= libufs.h NOMAN= noman CFLAGS+= -I${.CURDIR} -D_LIBUFS -.if defined(DEBUG) +.if defined(LIBUFS_DEBUG) CFLAGS+= -D_LIBUFS_DEBUGGING .endif