diff options
| author | Mirko Vogt | 2010-10-22 21:40:52 +0000 |
|---|---|---|
| committer | Mirko Vogt | 2010-10-22 21:40:52 +0000 |
| commit | 1223f17f8a64244caf53d7f511a4cecf77d6101c (patch) | |
| tree | 1d59a02d97e66d3c98cccf78a0b9e61ac08159aa | |
| parent | 2f19a28a0d45753fb48f4637fc967a7df66921f1 (diff) | |
| download | archive-1223f17f8a64244caf53d7f511a4cecf77d6101c.tar.gz | |
[vim] enable multibyte feature in vim-full package
SVN-Revision: 23587
| -rw-r--r-- | utils/vim/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/vim/Makefile b/utils/vim/Makefile index 611843e6d4..44642a4715 100644 --- a/utils/vim/Makefile +++ b/utils/vim/Makefile @@ -84,7 +84,6 @@ CONFIGURE_ARGS += \ --disable-gtktest \ --disable-xim \ --without-x \ - --disable-multibyte \ --disable-netbeans \ --disable-cscope \ --disable-gpm \ @@ -94,6 +93,7 @@ ifneq ($(CONFIG_PACKAGE_vim),) define Build/Compile/vim $(call Build/Configure/Default, \ --with-features=tiny \ + --disable-multibyte \ ) $(MAKE) -C $(PKG_BUILD_DIR) clean $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ @@ -107,6 +107,7 @@ ifneq ($(CONFIG_PACKAGE_vim-full),) define Build/Compile/vim-full $(call Build/Configure/Default, \ --with-features=normal \ + --enable-multibyte \ ) $(MAKE) -C $(PKG_BUILD_DIR) clean $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ |