diff options
author | antoine <antoine@FreeBSD.org> | 2014-06-01 05:43:21 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-06-01 05:43:21 +0800 |
commit | 02749a7ab592dc0c300e143322c1234e885c7558 (patch) | |
tree | 4cb449a0755e12f47016c135c52e2db9e438e7cc | |
parent | cc0e7b9acad0ba520f10196066bafaf134be3aa4 (diff) | |
download | freebsd-ports-gnome-02749a7ab592dc0c300e143322c1234e885c7558.tar.gz freebsd-ports-gnome-02749a7ab592dc0c300e143322c1234e885c7558.tar.zst freebsd-ports-gnome-02749a7ab592dc0c300e143322c1234e885c7558.zip |
- Add missing OPTIONS_DEFINE
- Fix a bug that didn't show up because bsd.port.pre.mk is not included
-rw-r--r-- | comms/chu/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/comms/chu/Makefile b/comms/chu/Makefile index c15ae248b5b1..bab226dfbe0f 100644 --- a/comms/chu/Makefile +++ b/comms/chu/Makefile @@ -15,6 +15,8 @@ LICENSE= GPLv1 NO_WRKSUBDIR= yes +OPTIONS_DEFINE= DOCS + post-extract: @${GZIP_CMD} -d ${WRKSRC}/testsignal.gz @@ -29,11 +31,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/testsignal ${STAGEDIR}${DATADIR} ${INSTALL_MAN} ${WRKSRC}/chu.8 ${STAGEDIR}${PREFIX}/man/man8 ${MKDIR} ${STAGEDIR}${DOCSDIR} -.for d in ${WRKSRC}/COPYING \ - ${WRKSRC}/TESTING \ - ${WRKSRC}/chu.html \ - ${WRKSRC}/chuman.html \ - ${WRKSRC}/ntp.html +.for d in COPYING TESTING chu.html chuman.html ntp.html ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR} .endfor |