diff options
author | jgh <jgh@FreeBSD.org> | 2013-03-21 15:19:03 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2013-03-21 15:19:03 +0800 |
commit | 7ef675574f4b32e9daee83c1835722fb64fda9e3 (patch) | |
tree | 79b95a5001453f0246bcf164a1c65114f95f7e29 /textproc | |
parent | b2cba779dd31b61d10613cd0a741a0a11b0541a6 (diff) | |
download | freebsd-ports-gnome-7ef675574f4b32e9daee83c1835722fb64fda9e3.tar.gz freebsd-ports-gnome-7ef675574f4b32e9daee83c1835722fb64fda9e3.tar.zst freebsd-ports-gnome-7ef675574f4b32e9daee83c1835722fb64fda9e3.zip |
- OPTIONS -> OPTIONS_DEFINE
- .if .if -> .if
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/sphinxsearch-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/sphinxsearch-devel/Makefile b/textproc/sphinxsearch-devel/Makefile index c9e108f431ff..dd5c9edd3f82 100644 --- a/textproc/sphinxsearch-devel/Makefile +++ b/textproc/sphinxsearch-devel/Makefile @@ -30,7 +30,7 @@ CONFLICTS= sphinxsearch-[0-9]* \ # of turning this off. So for consistency, make sure it's always on. LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 -OPTIONS= MYSQL PGSQL ICONV OPTIMIZED_CFLAGS ID64 UNIXODBC \ +OPTIONS_DEFINE= MYSQL PGSQL ICONV OPTIMIZED_CFLAGS ID64 UNIXODBC \ DOCS EXAMPLES ID64_DESC= 64-bit document and word IDs OPTIONS_DEFAULT= MYSQL ICONV @@ -142,7 +142,7 @@ install-docs: .endif install-examples: -.if .if ${PORT_OPTIONS:MEXAMPLES} +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} .for example in ${EXAMPLES} @cd ${WRKSRC} && ${COPYTREE_SHARE} ${example} ${EXAMPLESDIR} |