diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-12-06 00:05:34 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-12-06 00:05:34 +0000 |
commit | 86b719e0673960ae9da520ea48ba7f401755cb4d (patch) | |
tree | 04fcf68997cbefe6bb137ba9df9e514efae19312 /editors/vim | |
parent | Style: convert spaces to tabs, remove extra tabs from should-be-empty line. (diff) |
Fix a minor quoting bug triggered by:
(cd /usr/ports/editors/vim ; make -DNO_GUI )
Submitted by: yjchou@linux.cis.nctu.edu.tw
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index 099ba838ce25..ed4462088fe7 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -84,7 +84,7 @@ USE_MOTIF= yes MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=motif --with-motif-lib=\"${MOTIFLIB}\"" MOTIFHOME=${X11BASE} ${I18N} .endif .else # WITHOUT_X11 -MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x ${I18N}" +MAKE_ARGS+= CONF_OPT_GUI="--enable-gui=no --without-x" ${I18N} .endif # WITHOUT_X11 .if defined(PACKAGE_BUILDING) |