diff options
-rw-r--r-- | benchmarks/bytebench/Makefile | 16 | ||||
-rw-r--r-- | benchmarks/unixbench/Makefile | 16 |
2 files changed, 28 insertions, 4 deletions
diff --git a/benchmarks/bytebench/Makefile b/benchmarks/bytebench/Makefile index 8f198db74601..98a5fc4ba822 100644 --- a/benchmarks/bytebench/Makefile +++ b/benchmarks/bytebench/Makefile @@ -17,8 +17,20 @@ do-install: -mkdir -p $(PREFIX)/lib/bytebench for f in Makefile README Run doc pgms results testdir; \ do cp -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done - echo "!#/bin/sh" > $(PREFIX)/bin/bytebench - echo "$(PREFIX)/lib/bytebench/Run" >> $(PREFIX)/bin/bytebench + echo "#!/bin/sh" > $(PREFIX)/bin/bytebench + echo "TMPDIR=/var/tmp" >> $(PREFIX)/bin/bytebench + echo "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench + echo "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench + echo "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench + echo "exec ./Run" >> $(PREFIX)/bin/bytebench chmod 755 $(PREFIX)/bin/bytebench + chmod 644 $(PREFIX)/lib/bytebench/Makefile + chmod 644 $(PREFIX)/lib/bytebench/README + chmod 755 $(PREFIX)/lib/bytebench/Run + chmod 755 $(PREFIX)/lib/bytebench/doc + chmod 755 $(PREFIX)/lib/bytebench/pgms + chmod 755 $(PREFIX)/lib/bytebench/pgms/* + chmod 755 $(PREFIX)/lib/bytebench/results + chmod 755 $(PREFIX)/lib/bytebench/testdir .include <bsd.port.mk> diff --git a/benchmarks/unixbench/Makefile b/benchmarks/unixbench/Makefile index 8f198db74601..98a5fc4ba822 100644 --- a/benchmarks/unixbench/Makefile +++ b/benchmarks/unixbench/Makefile @@ -17,8 +17,20 @@ do-install: -mkdir -p $(PREFIX)/lib/bytebench for f in Makefile README Run doc pgms results testdir; \ do cp -R $(WRKSRC)/$$f $(PREFIX)/lib/bytebench; done - echo "!#/bin/sh" > $(PREFIX)/bin/bytebench - echo "$(PREFIX)/lib/bytebench/Run" >> $(PREFIX)/bin/bytebench + echo "#!/bin/sh" > $(PREFIX)/bin/bytebench + echo "TMPDIR=/var/tmp" >> $(PREFIX)/bin/bytebench + echo "RESULTDIR=/tmp" >> $(PREFIX)/bin/bytebench + echo "export TMPDIR RESULTDIR" >> $(PREFIX)/bin/bytebench + echo "cd $(PREFIX)/lib/bytebench" >> $(PREFIX)/bin/bytebench + echo "exec ./Run" >> $(PREFIX)/bin/bytebench chmod 755 $(PREFIX)/bin/bytebench + chmod 644 $(PREFIX)/lib/bytebench/Makefile + chmod 644 $(PREFIX)/lib/bytebench/README + chmod 755 $(PREFIX)/lib/bytebench/Run + chmod 755 $(PREFIX)/lib/bytebench/doc + chmod 755 $(PREFIX)/lib/bytebench/pgms + chmod 755 $(PREFIX)/lib/bytebench/pgms/* + chmod 755 $(PREFIX)/lib/bytebench/results + chmod 755 $(PREFIX)/lib/bytebench/testdir .include <bsd.port.mk> |