diff options
author | oliver <oliver@FreeBSD.org> | 2005-05-26 06:17:30 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-05-26 06:17:30 +0800 |
commit | 17224915aaeffc92c3ab9102386ffc7d53320785 (patch) | |
tree | f6f4a02b4d40daeef824cb6dd612b532b118d582 /benchmarks | |
parent | 993973c282ab35565b1c441951b73d9044401a64 (diff) | |
download | freebsd-ports-graphics-17224915aaeffc92c3ab9102386ffc7d53320785.tar.gz freebsd-ports-graphics-17224915aaeffc92c3ab9102386ffc7d53320785.tar.zst freebsd-ports-graphics-17224915aaeffc92c3ab9102386ffc7d53320785.zip |
fix build
hpl's Makefile used ARCH for some own things which conflicted with the predefined ARCH.
I renamed hpl's ARCH variable.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/hpl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmarks/hpl/Makefile b/benchmarks/hpl/Makefile index 23da5530c2f..5fa590a55db 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) |