diff options
author | obrien <obrien@FreeBSD.org> | 2000-07-20 18:55:05 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-07-20 18:55:05 +0800 |
commit | ab5ed6f423da80fca2eac82e4b3ce014238e65bc (patch) | |
tree | d1165768b1de85fa9e35e1b8959c2a491d823b72 /editors | |
parent | 47ead6847dff6c79ed8f4cf3f4d1ed35667c9c40 (diff) | |
download | freebsd-ports-gnome-ab5ed6f423da80fca2eac82e4b3ce014238e65bc.tar.gz freebsd-ports-gnome-ab5ed6f423da80fca2eac82e4b3ce014238e65bc.tar.zst freebsd-ports-gnome-ab5ed6f423da80fca2eac82e4b3ce014238e65bc.zip |
Prevent attempting to build with Python support if Python just happens to
be present. Since our Python port is built with threads support, Vim will
also need to be built with -pthreads but there is a build problem with
-pthreads set.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim5/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vim5/Makefile b/editors/vim5/Makefile index 95a125196caa..c72f0a0ea9f3 100644 --- a/editors/vim5/Makefile +++ b/editors/vim5/Makefile @@ -38,7 +38,7 @@ USE_PERL5= yes DIST_SUBDIR= vim WRKSRC= ${WRKDIR}/${DISTNAME}/src PATCH_DIST_ARGS= -d ${WRKDIR}/${DISTNAME} --forward --quiet -E ${PATCH_DIST_STRIP} -MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX} --with-tlib=termlib" -f +MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX} --with-tlib=termlib --disable-pythoninterp" -f ALL_TARGET= # PLIST_SUB= VIM_VER=${DISTNAME:S/-//:S/.//} MAN1= vim.1 vimtutor.1 xxd.1 ectags.1 |