diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-09-08 14:20:15 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-09-08 14:20:15 +0000 |
commit | 307748c0d81a0740433515eb7709af42fd5701a4 (patch) | |
tree | 3b332cb3b1b2ac31bfc7792fd1abc3a8523c1fff /databases/db42 | |
parent | Update to 5.0.10. (diff) |
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)
Notes
Notes:
svn path=/head/; revision=88809
Diffstat (limited to 'databases/db42')
-rw-r--r-- | databases/db42/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/db42/Makefile b/databases/db42/Makefile index 6a85ea827853..0cf2516d0ee6 100644 --- a/databases/db42/Makefile +++ b/databases/db42/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> |