diff options
author | jlam <jlam@pkgsrc.org> | 2002-09-20 23:48:12 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-09-20 23:48:12 +0000 |
commit | ef103586f91cb0429d8e3b5715c7a9ec3f0d6899 (patch) | |
tree | 9bf0c9f6698833bad1bd6a2674e4f77ee7e964f4 /benchmarks/bonnie++/Makefile | |
parent | 84927fc8d8cdacd6cf6438d9ef272aeb0e3887b1 (diff) | |
download | pkgsrc-ef103586f91cb0429d8e3b5715c7a9ec3f0d6899.tar.gz |
Use ROOT_{USER,GROUP} instead of hardcoding uid=gid=0.
Diffstat (limited to 'benchmarks/bonnie++/Makefile')
-rw-r--r-- | benchmarks/bonnie++/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/bonnie++/Makefile b/benchmarks/bonnie++/Makefile index 8efcece22d8..5f07854068e 100644 --- a/benchmarks/bonnie++/Makefile +++ b/benchmarks/bonnie++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2002/09/17 08:18:57 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2002/09/20 23:48:12 jlam Exp $ # DISTNAME= bonnie++-1.02c @@ -15,7 +15,7 @@ GNU_CONFIGURE= YES REPLACE_PERL= bon_csv2txt.in bon_csv2html.in benchmark: - @(cd ${WRKSRC}; ./bonnie++ -u 0:0 | tee bonnie.out) + @cd ${WRKSRC}; ./bonnie++ -u ${ROOT_USER}:${ROOT_GROUP} | tee bonnie.out results: @${MKDIR} /tmp/benches/`domainname` |