diff options
author | wiz <wiz@pkgsrc.org> | 2000-03-16 12:16:49 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-03-16 12:16:49 +0000 |
commit | a98e68c035e2f0c040f4508599e8b2e0309d1586 (patch) | |
tree | bb98f2de5244cf640e1f941de1a6c8c0ed6d1fd0 /benchmarks/benchfft | |
parent | eb406ad378600be5b5470df1e706f64b00d0e665 (diff) | |
download | pkgsrc-a98e68c035e2f0c040f4508599e8b2e0309d1586.tar.gz |
cp -> ${CP}, chmod -> ${CHMOD}
Diffstat (limited to 'benchmarks/benchfft')
-rw-r--r-- | benchmarks/benchfft/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmarks/benchfft/Makefile b/benchmarks/benchfft/Makefile index fcd3bd8645a..b36ca6a92af 100644 --- a/benchmarks/benchfft/Makefile +++ b/benchmarks/benchfft/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1999/03/08 10:50:23 agc Exp $ +# $NetBSD: Makefile,v 1.5 2000/03/16 12:16:49 wiz Exp $ DISTNAME= benchfft-2.0 CATEGORIES= benchmarks math @@ -29,12 +29,12 @@ benchmark: .if defined(BATCH) @${ECHO} "*** This benchmark should be run in non-batch mode" @${SED} -e 's|bench-fft|./bench|g' <${WRKSRC}/submit-script> ${WRKSRC}/run_bench - @chmod 755 ${WRKSRC}/run_bench + @${CHMOD} 755 ${WRKSRC}/run_bench @${SED} -e 's|@machine@|'`uname -m`'|' \ ${FILESDIR}/setup.answers | (cd ${WRKSRC} ; ./run_bench) .else @${SED} -e 's|bench-fft|./bench|g' <${WRKSRC}/submit-script> ${WRKSRC}/run_bench - @chmod 755 ${WRKSRC}/run_bench + @${CHMOD} 755 ${WRKSRC}/run_bench @(cd ${WRKSRC} ; ./run_bench) @${ECHO} ${PKGNAME} results: ${CAT} submit.txt @@ -42,6 +42,6 @@ benchmark: results: -@${MKDIR} /tmp/benches/`domainname` - -@cp ${WRKSRC}/submit.txt /tmp/benches/`domainname`/fft.`uname`-`uname -m`-`uname -r`.`hostname` + -@${CP} ${WRKSRC}/submit.txt /tmp/benches/`domainname`/fft.`uname`-`uname -m`-`uname -r`.`hostname` .include "../../mk/bsd.pkg.mk" |