summaryrefslogtreecommitdiff
path: root/x11/twin
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-10-10 12:59:36 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-10-10 12:59:36 +0000
commit744ecfac3352a5a89c9b0731e7782ef6aa337244 (patch)
tree066489f219d8ac0b5e6eb955366a5d1dd8bb53a7 /x11/twin
parentCorrect intl shlib version number. (diff)
CC, CXX, CFLAGS, PTHREAD_CFLAGS and PTHREAD_LIBS may contain `/' in
them when using a non-default compiler/linker, so do not use `/' as delimiter for s///. (I picked `|' instead)
Diffstat (limited to 'x11/twin')
-rw-r--r--x11/twin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/twin/Makefile b/x11/twin/Makefile
index cc71b606b73b..76308201b068 100644
--- a/x11/twin/Makefile
+++ b/x11/twin/Makefile
@@ -24,6 +24,6 @@ INSTALLS_SHLIB= yes
MAN1= twin.1
post-patch:
- @${REINPLACE_CMD} -e "s/-lpthread/${PTHREAD_LIBS}/g" ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure
.include <bsd.port.mk>