diff options
author | maho <maho@FreeBSD.org> | 2011-10-06 09:11:53 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2011-10-06 09:11:53 +0800 |
commit | d2b8b749020685587db8c627e25deeb4424a8b95 (patch) | |
tree | d4e96cf469251d95ececf6a0cd3cdd51cf0f3ec8 /math | |
parent | 26dc78538f7e71495ab87ce08db68ab401f83af5 (diff) | |
download | freebsd-ports-gnome-d2b8b749020685587db8c627e25deeb4424a8b95.tar.gz freebsd-ports-gnome-d2b8b749020685587db8c627e25deeb4424a8b95.tar.zst freebsd-ports-gnome-d2b8b749020685587db8c627e25deeb4424a8b95.zip |
"$" for CROSS_SUFFIX must be escaped.
Submitted by: bf@
Diffstat (limited to 'math')
-rw-r--r-- | math/gotoblas/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/gotoblas/Makefile b/math/gotoblas/Makefile index 9bf68190a196..1b30bd106b94 100644 --- a/math/gotoblas/Makefile +++ b/math/gotoblas/Makefile @@ -100,7 +100,7 @@ post-patch: ${WRKSRC}/lapack/laswp/Makefile \ ${WRKSRC}/reference/Makefile ${REINPLACE_CMD} -e "s+(ARCH)+(ARCH_)+" \ - -e 's+${CROSS_SUFFIX}+${LOCALBASE}/bin/+' \ + -e 's+$$(CROSS_SUFFIX)+${LOCALBASE}/bin/+' \ ${WRKSRC}/Makefile.system .if defined(WITH_OPENMP) ${REINPLACE_CMD} -e "s+GOTO_NUM_THREADS+OMP_NUM_THREADS+g" \ |