diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | Config/installfns.sh | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 4d84e162c..3bbe0fc9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-04-02 Bart Schaefer <schaefer@zsh.org> + + * 13887: Config/installfns.sh: Skip CVS subdirectories. + 2001-04-02 Clint Adams <schizo@debian.org> * 13884: Completion/Linux/_apm: Add FreeBSD 4.1 apm options. diff --git a/Config/installfns.sh b/Config/installfns.sh index 63b981a44..886185409 100755 --- a/Config/installfns.sh +++ b/Config/installfns.sh @@ -15,6 +15,7 @@ for file in $allfuncs; do if test -f $sdir_top/$file; then if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then case "$file" in + */CVS/*) continue;; Completion/comp*) subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`" instdir="$fndir/Completion" |