summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-27 21:17:30 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-27 21:17:30 +0100
commit98568f1697ef3ac001b64ff9de055a333706ee3d (patch)
tree800ad6640ccc673a3c93af3b33969b8a394c7efa
parentdb40ed98b297d0550c6971b096c87bf0debf59b1 (diff)
fix tab completion in vim :edit, by installing the example vimrc
-rw-r--r--TODO2
-rw-r--r--package/vim/Makefile5
2 files changed, 4 insertions, 3 deletions
diff --git a/TODO b/TODO
index e8d039a36..9c121685d 100644
--- a/TODO
+++ b/TODO
@@ -1,10 +1,8 @@
-- keyboard layout support
- relocatable gcc
- adkinstall with NTP and hwclock support
- newtarget simplify and make target like newpackage
- PKG_CONFLICTS for python/python2, is this possible with Kconfig?
- mirror only option, no internet access
-- vim tabbing for split command - terminal issue
- check alsa on foxg20 target
- fix ARM OABI support
- fix watchdog for alix1c (mfgpt timers problem)
diff --git a/package/vim/Makefile b/package/vim/Makefile
index 1eabf5555..206c43dc8 100644
--- a/package/vim/Makefile
+++ b/package/vim/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= vim
PKG_VERSION:= 7.3
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= 5b9510a17074e2b37d8bb38ae09edbf2
PKG_DESCR:= The text editor
PKG_SECTION:= editor
@@ -58,6 +58,9 @@ XAKE_FLAGS+= prefix=/usr \
post-install:
${INSTALL_DIR} ${IDIR_VIM}/usr/bin
+ ${INSTALL_DIR} ${IDIR_VIM}/usr/share/vim
${CP} ${WRKINST}/usr/bin/{ex,vim,view} ${IDIR_VIM}/usr/bin
+ ${CP} ${WRKINST}/usr/share/vim/vim73/vimrc_example.vim \
+ ${IDIR_VIM}/usr/share/vim/vimrc
include ${TOPDIR}/mk/pkg-bottom.mk