diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-11-05 19:50:19 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-11-05 19:50:19 +0800 |
commit | 1ce64c79c72d9aadc7c1b68510bfc6b3d179431b (patch) | |
tree | bae5514e004b51a26a7c88ce8293097b81e2f6d1 /security | |
parent | db1d0fe2e0bb61e812a65aa1d37acdca287a3f03 (diff) | |
download | freebsd-ports-gnome-1ce64c79c72d9aadc7c1b68510bfc6b3d179431b.tar.gz freebsd-ports-gnome-1ce64c79c72d9aadc7c1b68510bfc6b3d179431b.tar.zst freebsd-ports-gnome-1ce64c79c72d9aadc7c1b68510bfc6b3d179431b.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
Diffstat (limited to 'security')
-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} |