diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-10-10 12:59:36 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-10-10 12:59:36 +0000 |
commit | 744ecfac3352a5a89c9b0731e7782ef6aa337244 (patch) | |
tree | 066489f219d8ac0b5e6eb955366a5d1dd8bb53a7 /devel/cppadvio | |
parent | Correct 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)
Notes
Notes:
svn path=/head/; revision=67737
Diffstat (limited to 'devel/cppadvio')
-rw-r--r-- | devel/cppadvio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/cppadvio/Makefile b/devel/cppadvio/Makefile index 661456da4dd0..91e657578e34 100644 --- a/devel/cppadvio/Makefile +++ b/devel/cppadvio/Makefile @@ -20,7 +20,7 @@ USE_GMAKE= yes post-patch: @( cd ${WRKSRC}; ${MV} c++ c++.orig; \ - ${SED} -e 's/^ *gcc/${CXX} ${CXXFLAGS}/' c++.orig > c++; ${CHMOD} +x c++ ) + ${SED} -e 's|^ *gcc|${CXX} ${CXXFLAGS}|' c++.orig > c++; ${CHMOD} +x c++ ) do-install: $(INSTALL_DATA) ${WRKSRC}/libcppadvio.a ${PREFIX}/lib |