diff options
author | obrien <obrien@FreeBSD.org> | 2001-12-06 08:05:34 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-12-06 08:05:34 +0800 |
commit | 184e8ef9e4f9ce809d942b2355912f199e9d03aa (patch) | |
tree | 1a4af75e1f10fe3a4f076f1e443aa9de8f55a1cf /editors | |
parent | d8c37d624950c798c97e03a3ea8e35663526a888 (diff) | |
download | freebsd-ports-gnome-184e8ef9e4f9ce809d942b2355912f199e9d03aa.tar.gz freebsd-ports-gnome-184e8ef9e4f9ce809d942b2355912f199e9d03aa.tar.zst freebsd-ports-gnome-184e8ef9e4f9ce809d942b2355912f199e9d03aa.zip |
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')
-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) |