Binary files linux-2.6.14-stock/.Makefile.swp and linux-2.6.14/.Makefile.swp differ diff -ruN linux-2.6.14-stock/Makefile linux-2.6.14/Makefile --- linux-2.6.14-stock/Makefile 2005-10-27 20:02:08.000000000 -0400 +++ linux-2.6.14/Makefile 2005-10-28 10:01:32.000000000 -0400 @@ -1186,7 +1186,7 @@ #Adding $(srctree) adds about 20M on i386 to the size of the output file! ifeq ($(src),$(obj)) -__srctree = +__srctree = ./ else __srctree = $(srctree)/ endif @@ -1195,8 +1195,12 @@ define all-sources ( find $(__srctree) $(RCS_FIND_IGNORE) \ - \( -name include -o -name arch \) -prune -o \ + \( -path $(__srctree)include -o -path $(__srctree)arch -o \ + -path $(__srctree)mm \) -prune -o \ -name '*.[chS]' -print; \ + find $(__srctree)mm $(RCS_FIND_IGNORE) \ + \( -name nommu.c \) -prune \ + -o -name '*.[chS]' -print; \ for ARCH in $(ALLSOURCE_ARCHS) ; do \ find $(__srctree)arch/$${ARCH} $(RCS_FIND_IGNORE) \ -name '*.[chS]' -print; \ @@ -1238,8 +1242,10 @@ quiet_cmd_tags = MAKE $@ define cmd_tags rm -f $@; \ - CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL --extra=+f"`; \ - $(all-sources) | xargs ctags $$CTAGSF -a + ignorefile=../ctags-ignore ; sortprog=sort-tags ; sort=cat ;\ + [ -f $$ignorefile ] && ignore=-I$$ignorefile ;\ + hash $$sortprog 2>/dev/null && sort=$$sortprog ;\ + $(all-sources) | ctags $$ignore -L - -f - | $$sort > tags endef tags: FORCE