summaryrefslogtreecommitdiff
path: root/math
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 /math
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)
Notes
Notes: svn path=/head/; revision=67737
Diffstat (limited to 'math')
-rw-r--r--math/linalg/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/linalg/Makefile b/math/linalg/Makefile
index 41275671ab9e..e4a25153f7ed 100644
--- a/math/linalg/Makefile
+++ b/math/linalg/Makefile
@@ -19,8 +19,8 @@ INSTALL_TARGET= lib
USE_GMAKE= yes
post-patch:
- @( cd ${WRKSRC}; ${SED} -e 's/%%CXXFLAGS%%/${CXXFLAGS}/g' \
- -e 's/%%CXX%%/${CXX}/g' c++ > c++.sed; mv c++.sed c++; ${CHMOD} +x c++ )
+ @( cd ${WRKSRC}; ${SED} -e 's|%%CXXFLAGS%%|${CXXFLAGS}|g' \
+ -e 's|%%CXX%%|${CXX}|g' c++ > c++.sed; mv c++.sed c++; ${CHMOD} +x c++ )
post-install:
$(INSTALL_DATA) ${WRKSRC}/libla.a ${PREFIX}/lib