From be42cf355258f6f7cec97043c39406e37e1c0a22 Mon Sep 17 00:00:00 2001 From: se Date: Wed, 3 Jan 1996 00:06:21 +0000 Subject: Specify TMPDIR and RESULTDIR outside the /usr tree, or a R/O /usr will prevent the tests from running. --- benchmarks/unixbench/Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'benchmarks/unixbench') diff --git a/benchmarks/unixbench/Makefile b/benchmarks/unixbench/Makefile index 8f198db7460..98a5fc4ba82 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 -- cgit