From: Miklos Szeredi Date: Wed, 29 Nov 2006 16:22:31 +0000 (+0000) Subject: kernel: fix build problem for "make -C ..." X-Git-Tag: fuse_2_6_1~2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=229e8d9c6187089124d7d7b918943a2a3efe293d;p=qemu-gpiodev%2Flibfuse.git kernel: fix build problem for "make -C ..." --- diff --git a/ChangeLog b/ChangeLog index ef3acf5..e41f004 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ doesn't support the 'fuseblk' filesystem type. This has been biting ntfs-3g users. Reported by Yura Pakhuchiy + * kernel: fix build problem for "make -C ...". Reported by + Stephen Bryant + 2006-11-19 Miklos Szeredi * Fix bug in certain error paths of lookup routines. The request diff --git a/kernel/Makefile.in b/kernel/Makefile.in index 2392fd7..e26c700 100644 --- a/kernel/Makefile.in +++ b/kernel/Makefile.in @@ -50,4 +50,4 @@ obj-m := fuse.o fuse-objs := dev.o dir.o file.o inode.o control.o all-spec: - $(MAKE) -C @kernelsrc@ SUBDIRS=$(PWD) @KERNELMAKE_PARAMS@ modules + $(MAKE) -C @kernelsrc@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ modules