diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-01 18:20:53 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-01 18:20:53 +0000 |
commit | c3e1dd406cad52618614ee6adc037bde7870b80c (patch) | |
tree | daf362a3ffc77a25f66cea12839e7947733fa46a | |
parent | 0872dea481839f3352082665a71e9c90f5ae6fc3 (diff) | |
download | zsh-c3e1dd406cad52618614ee6adc037bde7870b80c.tar.gz zsh-c3e1dd406cad52618614ee6adc037bde7870b80c.tar.xz zsh-c3e1dd406cad52618614ee6adc037bde7870b80c.zip |
zsh-workers/7618
-rwxr-xr-x | Config/installfns.sh | 2 | ||||
-rwxr-xr-x | Config/uninstallfns.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Config/installfns.sh b/Config/installfns.sh index 665212a4e..fd943520d 100755 --- a/Config/installfns.sh +++ b/Config/installfns.sh @@ -13,7 +13,7 @@ for file in $FUNCTIONS_INSTALL; do if test -f "$sdir/$file"; then install="$install $file" else - install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/%%g\"`" + install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/% %g\"`" fi done diff --git a/Config/uninstallfns.sh b/Config/uninstallfns.sh index 017f657d9..655e5b8f2 100755 --- a/Config/uninstallfns.sh +++ b/Config/uninstallfns.sh @@ -7,7 +7,7 @@ for file in $FUNCTIONS_INSTALL; do if test -f "$sdir/$file"; then install="$install $file" else - install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/%%g\"`" + install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/% %g\"`" fi done |