From 5f23c25e0a14ed42c8be868ee9b161f8a6e46fde Mon Sep 17 00:00:00 2001 From: thepeople Date: Thu, 8 May 2008 14:59:37 +0000 Subject: [PATCH] fix missing then Signed-off-by: Mark Kelly git-svn-id: svn://svn.openwrt.org/openwrt/packages@11075 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/vim/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 191018f5e..92e204cd4 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