diff options
| -rw-r--r-- | Makefile | 5 | ||||
| -rwxr-xr-x | scripts/tags.sh | 9 |
2 files changed, 7 insertions, 7 deletions
| @@ -414,8 +414,9 @@ export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_ve | |||
| 414 | 414 | ||
| 415 | # Files to ignore in find ... statements | 415 | # Files to ignore in find ... statements |
| 416 | 416 | ||
| 417 | RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \ | 417 | export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \ |
| 418 | -o -name .pc -o -name .hg -o -name .git \) -prune -o | 418 | -name CVS -o -name .pc -o -name .hg -o -name .git \) \ |
| 419 | -prune -o | ||
| 419 | export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ | 420 | export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ |
| 420 | --exclude CVS --exclude .pc --exclude .hg --exclude .git | 421 | --exclude CVS --exclude .pc --exclude .hg --exclude .git |
| 421 | 422 | ||
diff --git a/scripts/tags.sh b/scripts/tags.sh index 58c455929091..f2c5b006a3d7 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh | |||
| @@ -11,11 +11,10 @@ if [ "$KBUILD_VERBOSE" = "1" ]; then | |||
| 11 | set -x | 11 | set -x |
| 12 | fi | 12 | fi |
| 13 | 13 | ||
| 14 | # This is a duplicate of RCS_FIND_IGNORE without escaped '()' | 14 | # RCS_FIND_IGNORE has escaped ()s -- remove them. |
| 15 | ignore="( -name SCCS -o -name BitKeeper -o -name .svn -o \ | 15 | ignore="$(echo "$RCS_FIND_IGNORE" | sed 's|\\||g' )" |
| 16 | -name CVS -o -name .pc -o -name .hg -o \ | 16 | # tags and cscope files should also ignore MODVERSION *.mod.c files |
| 17 | -name .git ) \ | 17 | ignore="$ignore ( -name *.mod.c ) -prune -o" |
| 18 | -prune -o" | ||
| 19 | 18 | ||
| 20 | # Do not use full path if we do not use O=.. builds | 19 | # Do not use full path if we do not use O=.. builds |
| 21 | # Use make O=. {tags|cscope} | 20 | # Use make O=. {tags|cscope} |
