diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-10-10 13:01:09 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-10-10 13:01:09 +0200 |
commit | a8b00da664fbea424f5c11e9b22f641b66059642 (patch) | |
tree | 6d6b507129f08af97b5b3905e52a31da1bbb66e8 | |
parent | 2bc52e9282a2d452a653c4fd67f7b4052ba9ff3d (diff) | |
download | zsh-a8b00da664fbea424f5c11e9b22f641b66059642.tar.gz zsh-a8b00da664fbea424f5c11e9b22f641b66059642.zip |
The zsh4 wrapper needs to call zsh5, not zsh
Otherwise we may create an endless symbolic link + exec chain during upgrade
Git-Dch: Ignore
-rwxr-xr-x | debian/zsh4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/zsh4 b/debian/zsh4 index 8cf619bff..a45e41749 100755 --- a/debian/zsh4 +++ b/debian/zsh4 @@ -23,4 +23,4 @@ if [[ $0 == *zsh4* ]]; then echo "" fi 1>&2 -exec "/bin/zsh${static}" "$@" +exec "/bin/zsh5${static}" "$@" |