1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-26 22:10:45 +02:00

18238: bashcompinit was not being installed with --enable-function-subdirs

This commit is contained in:
Oliver Kiddle 2003-02-13 16:34:19 +00:00
parent b9d8d6f200
commit c1467e410d
3 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,8 @@
2003-02-13 Oliver Kiddle <opk@zsh.org>
* 18238: Config/installfns.sh, Src/Zle/complete.mdd:
bashcompinit was not being installed with --enable-function-subdirs
* users/5915: Completion/Unix/Command/_ssh: two levels of quoting
are needed for remote files referenced with scp

View File

@ -18,14 +18,13 @@ for file in $allfuncs; do
esac
if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then
case "$file" in
Completion/comp*)
subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`"
instdir="$fndir/Completion"
;;
Completion/*)
Completion/*/*)
subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`"
instdir="$fndir/$subdir"
;;
Completion/*)
instdir="$fndir/Completion"
;;
*)
subdir="`echo $file | sed -e 's%/[^/]*$%%' -e 's%^Functions/%%'`"
instdir="$fndir/$subdir"

View File

@ -1,7 +1,7 @@
name=zsh/complete
link=either
load=yes
functions='Completion/comp* Completion/AIX/*/* Completion/BSD/*/* Completion/Base/*/* Completion/Debian/*/* Completion/Linux/*/* Completion/Mandrake/*/* Completion/Redhat/*/* Completion/Unix/*/* Completion/X/*/* Completion/Zsh/*/*'
functions='Completion/*comp* Completion/AIX/*/* Completion/BSD/*/* Completion/Base/*/* Completion/Debian/*/* Completion/Linux/*/* Completion/Mandrake/*/* Completion/Redhat/*/* Completion/Unix/*/* Completion/X/*/* Completion/Zsh/*/*'
moddeps="zsh/zle"