summaryrefslogtreecommitdiff
path: root/benchmarks/lmbench/files/do-install
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/lmbench/files/do-install')
-rwxr-xr-xbenchmarks/lmbench/files/do-install16
1 files changed, 8 insertions, 8 deletions
diff --git a/benchmarks/lmbench/files/do-install b/benchmarks/lmbench/files/do-install
index 917283eee2b..dd807e2f042 100755
--- a/benchmarks/lmbench/files/do-install
+++ b/benchmarks/lmbench/files/do-install
@@ -10,27 +10,27 @@ MAN3="lmbench.3 reporting.3 results.3 timing.3"
MAN8="lmbench.8 lat_proc.8 lat_mmap.8 lat_ctx.8 lat_syscall.8 lat_pipe.8 lat_tcp.8 lat_udp.8 lat_rpc.8 lat_connect.8 lat_fs.8 lat_pagefault.8 lat_mem_rd.8 bw_file_rd.8 bw_mem_cp.8 bw_mem_rd.8 bw_mem_wr.8 bw_mmap_rd.8 bw_pipe.8 bw_tcp.8 mhz.8 lmdd.8"
MAN1="bargraph.1 graph.1"
-mkdir -p $PREFIX/bin/lmbench
+mkdir -p $PREFIX/libexec/lmbench
mkdir -p $PREFIX/share/lmbench
for files in $BINS; do
- $BSD_INSTALL_PROGRAM bin/$OSDIR/$files $PREFIX/bin/lmbench
+ $BSD_INSTALL_PROGRAM bin/$OSDIR/$files $PREFIX/libexec/lmbench
done
for files in $SCRIPTS; do
- $BSD_INSTALL_SCRIPT scripts/$files $PREFIX/bin/lmbench
+ $BSD_INSTALL_SCRIPT scripts/$files $PREFIX/libexec/lmbench
done
for files in $MAN1; do
- $BSD_INSTALL_MAN doc/$files $PREFIX/man/man1
+ $BSD_INSTALL_MAN doc/$files $PREFIX/$PKGMANDIR/man1
done
for files in $MAN8; do
- $BSD_INSTALL_MAN doc/$files $PREFIX/man/man8
+ $BSD_INSTALL_MAN doc/$files $PREFIX/$PKGMANDIR/man8
done
for files in $MAN3; do
- $BSD_INSTALL_MAN doc/$files $PREFIX/man/man3
+ $BSD_INSTALL_MAN doc/$files $PREFIX/$PKGMANDIR/man3
done
cat <<EOF >$PREFIX/bin/run-lmbench
#!/bin/sh
-${PREFIX}/bin/lmbench/config-run
-${PREFIX}/bin/lmbench/results
+${PREFIX}/libexec/lmbench/config-run
+${PREFIX}/libexec/lmbench/results
EOF
chmod 0755 ${PREFIX}/bin/run-lmbench
cp -R src/webpage-lm $PREFIX/share/lmbench