summaryrefslogtreecommitdiff
path: root/benchmarks/lmbench/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>1999-12-28 04:26:17 +0000
committerwiz <wiz@pkgsrc.org>1999-12-28 04:26:17 +0000
commite74f5b550996fbf8e63c91d1484a8a25bd23a1ec (patch)
tree7560d51554d593f699a3257a9ac91f86fa560ddf /benchmarks/lmbench/Makefile
parentb08558ab94100bd19dba5da659e3a30125a04eaa (diff)
downloadpkgsrc-e74f5b550996fbf8e63c91d1484a8a25bd23a1ec.tar.gz
replaced some commands by their ${COMMAND} counterparts
one RCS tag added
Diffstat (limited to 'benchmarks/lmbench/Makefile')
-rw-r--r--benchmarks/lmbench/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/lmbench/Makefile b/benchmarks/lmbench/Makefile
index 6bb2b860736..98a8ef7b3f1 100644
--- a/benchmarks/lmbench/Makefile
+++ b/benchmarks/lmbench/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 1999/01/02 02:26:34 hubertf Exp $
+# $NetBSD: Makefile,v 1.6 1999/12/28 04:26:18 wiz Exp $
DISTNAME= lmbench-2alpha11
PKGNAME= lmbench-2.11a
@@ -37,11 +37,11 @@ benchmark:
fi
.if defined(BATCH)
@${ECHO} "*** This benchmark should only be run in non-batch mode" ; \
- if [ `id -u` != 0 ]; then echo "This benchmark must be run as root!" ; exit 1 ; fi ; \
+ if [ `id -u` != 0 ]; then ${ECHO} "This benchmark must be run as root!" ; exit 1 ; fi ; \
@${SED} -e 's|@wrksrc@|${WRKSRC}|' < ${FILESDIR}/setup.answers | \
(cd ${WRKSRC}/src; ${GMAKE} results)
.else
- @if [ `id -u` != 0 ]; then echo "This benchmark must be run as root!" ; exit 1 ; fi
+ @if [ `id -u` != 0 ]; then ${ECHO} "This benchmark must be run as root!" ; exit 1 ; fi
@cd ${WRKSRC}/src; ${GMAKE} results
.endif