diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-05 11:50:19 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-05 11:50:19 +0000 |
commit | c5c6314a6ca7ba09f646e9896a89cee1bbb304ae (patch) | |
tree | bae5514e004b51a26a7c88ce8293097b81e2f6d1 | |
parent | 3fa179fd2651f5af28a82ffa6e9b552857e64602 (diff) | |
download | freebsd-ports-c5c6314a6ca7ba09f646e9896a89cee1bbb304ae.zip |
- Mark MAKE_JOBS_UNSAFE, fails in parallel build:
/usr/bin/ld: cannot find -lpcre
(bundled pcre library is used before it's built)
- Use options helpers
Approved by: portmgr blanket
-rw-r--r-- | security/amap/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/amap/Makefile b/security/amap/Makefile index 4975a336a229..78ced98a072d 100644 --- a/security/amap/Makefile +++ b/security/amap/Makefile @@ -12,6 +12,7 @@ COMMENT= Application mapper HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} +MAKE_JOBS_UNSAFE= yes USE_OPENSSL= yes @@ -44,6 +45,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${ETCDIR}/${i}.sample .endfor ${INSTALL_MAN} ${WRKSRC}/amap.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/$i ${STAGEDIR}${DOCSDIR} |