mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-27 05:50:56 -04:00
32 lines
867 B
Plaintext
32 lines
867 B
Plaintext
$NetBSD: patch-ag,v 1.2 1998/09/23 16:56:01 agc Exp $
|
|
--- scripts/gen-summary.orig Sat Sep 5 09:23:30 1998
|
|
+++ scripts/gen-summary Sat Sep 5 09:24:09 1998
|
|
@@ -45,9 +45,6 @@
|
|
exit 1
|
|
fi
|
|
|
|
-# Step 1: Discover hbench root path
|
|
-HBENCHROOT=`(cd \`dirname $0\`/.. ; pwd)`
|
|
-
|
|
# Some general system information
|
|
echo "HBench-OS 1.0 Summary Output"
|
|
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-"
|
|
@@ -60,7 +57,7 @@
|
|
do
|
|
echo "${benchmark}:"
|
|
FILES="${benchmark}_* ${benchmark}"
|
|
- FILES=`echo ${FILES} | ${HBENCHROOT}/scripts/argsort`
|
|
+ FILES=`echo ${FILES} | @PREFIX@/bin/hbench/argsort`
|
|
for file in $FILES
|
|
do
|
|
if [ -f $file ]; then
|
|
@@ -70,7 +67,7 @@
|
|
fi
|
|
PARAMS="${PARAMS}: "
|
|
|
|
- echo " ${PARAMS}`${HBENCHROOT}/scripts/stats-full $file 2>&1`"
|
|
+ echo " ${PARAMS}`@PREFIX@/bin/hbench/stats-full $file 2>&1`"
|
|
fi
|
|
done
|
|
echo
|