diff options
author | Andrey Borzenkov <bor@users.sourceforge.net> | 2001-02-02 08:44:53 +0000 |
---|---|---|
committer | Andrey Borzenkov <bor@users.sourceforge.net> | 2001-02-02 08:44:53 +0000 |
commit | 7194a5030006e3c418f8353e4023115135ee3191 (patch) | |
tree | 31540ec75ca19ed1e73e4d00a8f159e46f658a57 /Src/mkmakemod.sh | |
parent | 8ff6a955fe4b356db10ee40a456e35bda669ceef (diff) | |
download | zsh-7194a5030006e3c418f8353e4023115135ee3191.tar.gz zsh-7194a5030006e3c418f8353e4023115135ee3191.tar.xz zsh-7194a5030006e3c418f8353e4023115135ee3191.zip |
unposted: fix patterns previous patch
Diffstat (limited to 'Src/mkmakemod.sh')
-rw-r--r-- | Src/mkmakemod.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Src/mkmakemod.sh b/Src/mkmakemod.sh index aa5f3c0ec..ade22cfad 100644 --- a/Src/mkmakemod.sh +++ b/Src/mkmakemod.sh @@ -132,8 +132,7 @@ if $first_stage; then $the_subdir/$lastsub/*) ;; $the_subdir/*/*) lastsub=`echo $modfile | sed 's,^'$the_subdir'/,,;s,/[^/]*$,,'` - case "$all_subdirs" in - *" $lastsub"* ) ;; + case "$all_subdirs " in *" $lastsub "* ) ;; * ) all_subdirs="$all_subdirs $lastsub" |