From: Erez_Zadok Date: Sat, 26 May 2007 02:36:13 +0000 (-0400) Subject: Unionfs: allow users to override Makefile options in fs/unionfs/local.mk X-Git-Tag: unionfs-2.1.1~84 X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=470e647cb206c188728838466885f16b2c16f6df;p=unionfs-2.6.36.y.git Unionfs: allow users to override Makefile options in fs/unionfs/local.mk Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/Makefile b/fs/unionfs/Makefile index 883427c448d..7c18a3c2575 100644 --- a/fs/unionfs/Makefile +++ b/fs/unionfs/Makefile @@ -8,8 +8,12 @@ unionfs-y := subr.o dentry.o file.o inode.o main.o super.o \ unionfs-$(CONFIG_UNION_FS_XATTR) += xattr.o # If you want debugging output, please uncomment the following line +# or put your options in a separate file in linux-x.y.z/fs/unionfs/local.mk #CONFIG_UNIONFS_DEBUG=y +# Allow users to override debug options in a separate file +-include fs/unionfs/local.mk + ifeq ($(CONFIG_UNIONFS_DEBUG),y) unionfs-y += debug.o EXTRA_CFLAGS += -DUNIONFS_DEBUG=1