diff options
author | nork <nork@FreeBSD.org> | 2003-09-08 14:20:15 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-09-08 14:20:15 +0000 |
commit | 47e5658477cfd66a385b4811acaf2b83e8024f88 (patch) | |
tree | a6784c8b98e1c611ace67a3f642f350e619517e8 /databases/db47 | |
parent | db9021864daf1f9debdb8f4939b9cb27eb1e15ce (diff) | |
download | FreeBSD-ports-47e5658477cfd66a385b4811acaf2b83e8024f88.zip FreeBSD-ports-47e5658477cfd66a385b4811acaf2b83e8024f88.tar.gz |
Fix build on recent current (by -pthread option is deprecated).
PR: ports/56551
Submitted by: KONDOU, Kazuhiro <kazuhiro@alib.jp>
Approved by: Matthias Andree <matthias.andree@gmx.de> (maintainer)
Diffstat (limited to 'databases/db47')
-rw-r--r-- | databases/db47/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/db47/Makefile b/databases/db47/Makefile index 6a85ea8..0cf2516 100644 --- a/databases/db47/Makefile +++ b/databases/db47/Makefile @@ -37,7 +37,7 @@ INSTALL_TARGET= install install_docs .endif post-patch: - @${REINPLACE_CMD} -e \ - 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} + @${REINPLACE_CMD} -Ee \ + 's|-l?pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT} .include <bsd.port.mk> |