diff options
author | 2004-04-17 00:42:08 +0000 | |
---|---|---|
committer | 2004-04-17 00:42:08 +0000 | |
commit | ef4329cda0a9362456d15bb1db0a1384829bb047 (patch) | |
tree | 12a85aad309a1f57c61e4acfc1ec12a1bb6e1347 /net-fs/shfs/files | |
parent | Added to ~ppc (diff) | |
download | historical-ef4329cda0a9362456d15bb1db0a1384829bb047.tar.gz historical-ef4329cda0a9362456d15bb1db0a1384829bb047.tar.bz2 historical-ef4329cda0a9362456d15bb1db0a1384829bb047.zip |
Close 43383. Fix debug output.
Diffstat (limited to 'net-fs/shfs/files')
-rw-r--r-- | net-fs/shfs/files/digest-shfs-0.32-r1 | 1 | ||||
-rw-r--r-- | net-fs/shfs/files/shfs-gentoo-0.32-makefile-debug.diff | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/net-fs/shfs/files/digest-shfs-0.32-r1 b/net-fs/shfs/files/digest-shfs-0.32-r1 new file mode 100644 index 000000000000..589486862534 --- /dev/null +++ b/net-fs/shfs/files/digest-shfs-0.32-r1 @@ -0,0 +1 @@ +MD5 477c4236f24c770238075f04de38fd71 shfs-0.32.tar.gz 96346 diff --git a/net-fs/shfs/files/shfs-gentoo-0.32-makefile-debug.diff b/net-fs/shfs/files/shfs-gentoo-0.32-makefile-debug.diff new file mode 100644 index 000000000000..8da61d2c32b3 --- /dev/null +++ b/net-fs/shfs/files/shfs-gentoo-0.32-makefile-debug.diff @@ -0,0 +1,30 @@ +--- shfs-0.32.orig/shfs/Linux-2.6/Makefile 2004-02-28 17:02:27.764129840 +0100 ++++ shfs-0.32/shfs/Linux-2.6/Makefile 2004-02-28 17:02:53.151270408 +0100 +@@ -1,3 +1,7 @@ ++ifndef DEBUG ++DEBUG=0 ++endif ++ + ifneq ($(KERNELRELEASE),) + # call from kernel build system + +@@ -5,7 +9,7 @@ + + shfs-objs := dcache.o dir.o fcache.o file.o inode.o proc.o proto.o symlink.o + +-EXTRA_CFLAGS += -DVERSION=\"0.3\" -DDEBUG_LEVEL=5 ++EXTRA_CFLAGS += -DVERSION=\"0.3\" -DDEBUG_LEVEL=${DEBUG} + + else + # external module build +@@ -18,10 +22,6 @@ + KERNEL_SOURCES=${MODULESDIR}/build + endif + +-ifndef DEBUG +-DEBUG=0 +-endif +- + KERNEL := linux-$(shell uname -r) + PWD := $(shell pwd) + |