diff options
author | asami <asami@FreeBSD.org> | 1996-02-01 15:22:23 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-02-01 15:22:23 +0800 |
commit | f91ff09a90f77c0cd66573e3bf2794d3b07f2c3b (patch) | |
tree | dfad8376edc0e972f60449e67011c0fb01710d21 /benchmarks/lmbench/files | |
parent | a36560e02365f14aa8f2a78eba314bee64e5503b (diff) | |
download | freebsd-ports-gnome-f91ff09a90f77c0cd66573e3bf2794d3b07f2c3b.tar.gz freebsd-ports-gnome-f91ff09a90f77c0cd66573e3bf2794d3b07f2c3b.tar.zst freebsd-ports-gnome-f91ff09a90f77c0cd66573e3bf2794d3b07f2c3b.zip |
Fix a couple of relative paths.
Diffstat (limited to 'benchmarks/lmbench/files')
-rw-r--r-- | benchmarks/lmbench/files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/lmbench/files/Makefile b/benchmarks/lmbench/files/Makefile index cb0a1523e2a1..67c47d13612d 100644 --- a/benchmarks/lmbench/files/Makefile +++ b/benchmarks/lmbench/files/Makefile @@ -2,12 +2,12 @@ BINDIR = ./bin/bsd results: - @(cd scripts; ./config-run ${BINDIR}/CONFIG) + @(cd scripts; ./config-run ../${BINDIR}/CONFIG) @(cd scripts; ./results) rerun: - @(if [ ! -f bin/bsd/CONFIG ]; then \ - (cd scripts; ./config-run ${BINDIR}/CONFIG); \ + @(if [ ! -f ${BINDIR}/CONFIG ]; then \ + (cd scripts; ./config-run ../${BINDIR}/CONFIG); \ fi) @(cd scripts; ./results) |