diff options
author | morr <morr> | 2015-07-13 09:33:13 +0000 |
---|---|---|
committer | morr <morr> | 2015-07-13 09:33:13 +0000 |
commit | 3ef1402df547ab1eb6554e5cdcb2c727d48973e3 (patch) | |
tree | 9dd91fa02e22176d4b0f4eff5636a97e4fb3bbb0 /editors/vim-share | |
parent | d619d9011b26e519f5931b73c7205fc32c3ca7bd (diff) | |
download | pkgsrc-3ef1402df547ab1eb6554e5cdcb2c727d48973e3.tar.gz |
Remove prefix option for lua. It prevents detecting default location of Lua.
Diffstat (limited to 'editors/vim-share')
-rw-r--r-- | editors/vim-share/Makefile | 4 | ||||
-rw-r--r-- | editors/vim-share/options.mk | 6 |
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 |