diff options
author | mandree <mandree@FreeBSD.org> | 2012-06-12 04:49:30 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2012-06-12 04:49:30 +0800 |
commit | 50fa58baa58bd31074f0f487ffdff10ce1bd1655 (patch) | |
tree | e1498861b0e40c478f48dbc5d3a5832dd5976751 /dns/dnsmasq/Makefile | |
parent | 6f995933b905b4a52db77ffc57b2dfc1d1afaa70 (diff) | |
download | freebsd-ports-gnome-50fa58baa58bd31074f0f487ffdff10ce1bd1655.tar.gz freebsd-ports-gnome-50fa58baa58bd31074f0f487ffdff10ce1bd1655.tar.zst freebsd-ports-gnome-50fa58baa58bd31074f0f487ffdff10ce1bd1655.zip |
Fix inverted PORT_OPTIONS:MDOCS logic, regression from optionsNG migration.
Reported by: Spil Oss
Reported by: pointyhat (by way of pav@)
Diffstat (limited to 'dns/dnsmasq/Makefile')
-rw-r--r-- | dns/dnsmasq/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/dnsmasq/Makefile b/dns/dnsmasq/Makefile index 706053e9f422..3c0d4135224f 100644 --- a/dns/dnsmasq/Makefile +++ b/dns/dnsmasq/Makefile @@ -7,6 +7,7 @@ PORTNAME= dnsmasq DISTVERSION= 2.62 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= dns ipv6 MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/ \ @@ -95,7 +96,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/dnsmasq ${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/dnsmasq.conf.example ${PREFIX}/etc ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.8 ${PREFIX}/man/man8 -.if empty(PORT_OPTIONS:MDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif |