aboutsummaryrefslogtreecommitdiff
path: root/ftp/axel
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 /ftp/axel
parent3e9a36d879aec1af280d740a5090d0a51d99b062 (diff)
downloadports-744ecfac3352a5a89c9b0731e7782ef6aa337244.tar.gz
ports-744ecfac3352a5a89c9b0731e7782ef6aa337244.zip
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)
Notes
Notes: svn path=/head/; revision=67737
Diffstat (limited to 'ftp/axel')
-rw-r--r--ftp/axel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp/axel/Makefile b/ftp/axel/Makefile
index ad274b2bb091..af3c6a93f3d1 100644
--- a/ftp/axel/Makefile
+++ b/ftp/axel/Makefile
@@ -24,7 +24,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${PREFIX}/man --i18n=1
MAN1= axel.1
post-configure:
- @${REINPLACE_CMD} -e 's,-O3,${CFLAGS},; s/gcc/${CC}/; \
- s/-pthread/${PTHREAD_LIBS}/' ${WRKSRC}/Makefile.settings
+ @${REINPLACE_CMD} -e 's,-O3,${CFLAGS},; s|gcc|${CC}|; \
+ s|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile.settings
.include <bsd.port.mk>