From 24d4284b0ba733e726d7f73288fdda7c8f988519 Mon Sep 17 00:00:00 2001 From: Travis Kemen Date: Thu, 8 May 2008 14:59:37 +0000 Subject: [PATCH] fix missing then Signed-off-by: Mark Kelly SVN-Revision: 11075 --- utils/vim/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 191018f5e7..92e204cd4a 100644 --- a/utils/vim/Makefile +++ b/utils/vim/Makefile @@ -160,7 +160,8 @@ define Package/vim-full/postinst if [ $${IPKG_INSTROOT} != / ] then if [ -d /usr/share/ ] - ln -s $${IPKG_INSTROOT}/usr/share/vim/ /usr/share/ + then + ln -s $${IPKG_INSTROOT}/usr/share/vim/ /usr/share/ fi fi endef @@ -170,7 +171,8 @@ define Package/vim/postinst if [ $${IPKG_INSTROOT} != / ] then if [ -d /usr/share/ ] - ln -s $${IPKG_INSTROOT}/usr/share/vim/vimrc /usr/share/vim/vimrc + then + ln -s $${IPKG_INSTROOT}/usr/share/vim/vimrc /usr/share/vim/vimrc fi fi endef -- 2.30.2