aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/hpl
diff options
context:
space:
mode:
authorOliver Lehmann <oliver@FreeBSD.org>2005-05-25 22:17:30 +0000
committerOliver Lehmann <oliver@FreeBSD.org>2005-05-25 22:17:30 +0000
commit1ca9acd31f45050550e7219f65c69f7fa1a3bf72 (patch)
tree3c30c672aef8a03e9997b0d0364cfff5cae5b76d /benchmarks/hpl
parentbacc2286603cb24dd1d3a71c4e8fb57a03b1cf08 (diff)
downloadports-1ca9acd31f45050550e7219f65c69f7fa1a3bf72.tar.gz
ports-1ca9acd31f45050550e7219f65c69f7fa1a3bf72.zip
fix build
hpl's Makefile used ARCH for some own things which conflicted with the predefined ARCH. I renamed hpl's ARCH variable.
Notes
Notes: svn path=/head/; revision=136138
Diffstat (limited to 'benchmarks/hpl')
-rw-r--r--benchmarks/hpl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmarks/hpl/Makefile b/benchmarks/hpl/Makefile
index 23da5530c2fb..5fa590a55dbb 100644
--- a/benchmarks/hpl/Makefile
+++ b/benchmarks/hpl/Makefile
@@ -74,7 +74,8 @@ post-patch:
s|^CC[ ]*=.*$$|CC = ${CC}| ; \
s|^CCFLAGS[ ]*=.*$$|CCFLAGS = $$\(HPL_DEFS\) ${CFLAGS} -fomit-frame-pointer -funroll-loops| ; \
s|^LINKER[ ]*=.*$$|LINKER = ${FC}| ; \
- s|^ARCHIVER[ ]*=.*$$|ARCHIVER = ${AR}|'\
+ s|^ARCHIVER[ ]*=.*$$|ARCHIVER = ${AR}| ; \
+ s|ARCH[ )]|_&|g' \
${WRKSRC}/setup/Make.${HPL_ARCH}
.if defined(WITH_LAM)