summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authormorr <morr@pkgsrc.org>2015-07-13 09:33:13 +0000
committermorr <morr@pkgsrc.org>2015-07-13 09:33:13 +0000
commite13670ae5aa6777b49f799780e172377351a7447 (patch)
tree9dd91fa02e22176d4b0f4eff5636a97e4fb3bbb0 /editors
parente32edf56f3463abff58c806e0a61585c680c0c3e (diff)
downloadpkgsrc-e13670ae5aa6777b49f799780e172377351a7447.tar.gz
Remove prefix option for lua. It prevents detecting default location of Lua.
Diffstat (limited to 'editors')
-rw-r--r--editors/vim-share/Makefile4
-rw-r--r--editors/vim-share/options.mk6
2 files changed, 5 insertions, 5 deletions
diff --git a/editors/vim-share/Makefile b/editors/vim-share/Makefile
index 9e380d2b6be..3df1f6af3fd 100644
--- a/editors/vim-share/Makefile
+++ b/editors/vim-share/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.38 2015/07/04 12:54:51 morr Exp $
+# $NetBSD: Makefile,v 1.39 2015/07/13 09:33:13 morr Exp $
PKGNAME= vim-share-${VIM_VERSION}.${VIM_PATCHLEVEL}
-PKGREVISION= 1
+PKGREVISION= 2
COMMENT= Data files for the vim editor (vi clone)
.include "Makefile.common"
diff --git a/editors/vim-share/options.mk b/editors/vim-share/options.mk
index ea437c3967a..d4956b41ec5 100644
--- a/editors/vim-share/options.mk
+++ b/editors/vim-share/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2015/07/04 12:54:51 morr Exp $
+# $NetBSD: options.mk,v 1.6 2015/07/13 09:33:13 morr Exp $
PKG_SUPPORTED_OPTIONS+= ruby python perl lua luajit
PKG_OPTIONS_VAR= PKG_OPTIONS.vim
@@ -25,10 +25,10 @@ CONFIGURE_ENV+= vi_cv_path_perl=${PERL5}
.if !empty(PKG_OPTIONS:Mlua)
.include "../../lang/lua/buildlink3.mk"
-CONFIGURE_ARGS+= --enable-luainterp --with-lua-prefix=${PREFIX}
+CONFIGURE_ARGS+= --enable-luainterp
.endif
.if !empty(PKG_OPTIONS:Mluajit)
.include "../../lang/LuaJIT2/buildlink3.mk"
-CONFIGURE_ARGS+= --enable-luainterp --with-lua-prefix=${PREFIX} --with-luajit
+CONFIGURE_ARGS+= --enable-luainterp --with-luajit
.endif