diff options
Diffstat (limited to 'source/ap/vim/vim-gvim.SlackBuild')
-rwxr-xr-x | source/ap/vim/vim-gvim.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/ap/vim/vim-gvim.SlackBuild b/source/ap/vim/vim-gvim.SlackBuild index 5f15aec0..5bc65fc7 100755 --- a/source/ap/vim/vim-gvim.SlackBuild +++ b/source/ap/vim/vim-gvim.SlackBuild @@ -129,8 +129,6 @@ if [ -d $PKG/usr/man ]; then fi # Legacy binary links: -( cd $PKG/usr/bin ; rm -rf ex ) -( cd $PKG/usr/bin ; ln -sf vim ex ) ( cd $PKG/usr/bin ; rm -rf rview ) ( cd $PKG/usr/bin ; ln -sf vim rview ) ( cd $PKG/usr/bin ; rm -rf rvim ) @@ -142,9 +140,11 @@ fi ( cd $PKG/usr/bin ; rm -rf evim ) ( cd $PKG/usr/bin ; ln -sf vim evim ) +# These should not be shipped: +rm -f $PKG/usr/bin/{ex,vi} + mkdir -p $PKG/install cat $CWD/slack-desc.vim-gvim > $PKG/install/slack-desc -zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null |