diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-12-03 01:27:04 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-12-03 01:27:04 +0000 |
commit | 0ddb865a760897ddd3cacb4126e797f5422868e3 (patch) | |
tree | 3fa3c2bfd0d7a166d4eed3970024e7df0a971f1a /benchmarks/hbench | |
parent | 910aeb3ff8e3940a8de6d3b7c11671fd409aaa86 (diff) | |
download | pkgsrc-0ddb865a760897ddd3cacb4126e797f5422868e3.tar.gz |
make aware of BATCH (if interactive), uid (if benchmark needs to be run as root)
Diffstat (limited to 'benchmarks/hbench')
-rw-r--r-- | benchmarks/hbench/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmarks/hbench/Makefile b/benchmarks/hbench/Makefile index fcaf90eb854..2bbdf40830a 100644 --- a/benchmarks/hbench/Makefile +++ b/benchmarks/hbench/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 1998/11/16 11:27:54 agc Exp $ +# $NetBSD: Makefile,v 1.6 1998/12/03 01:27:05 hubertf Exp $ DISTNAME= hbench-OS-1.0 PKGNAME= hbench-1.0 @@ -41,6 +41,7 @@ do-install: @${SETENV} PREFIX=${PREFIX} WRKSRC=${WRKSRC} ${SCRIPTDIR}/do-install benchmark: + @if [ `id -u` != 0 ]; then echo "This benchmark must be run as root!" ; exit 1 ; fi @cd ${WRKSRC}; \ ${SED} -e 's|@pwd@|'`/bin/pwd`'|g' \ -e 's|@hostname@|'`/bin/hostname -s`'|g' \ |