1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Fix a couple of relative paths.

This commit is contained in:
Satoshi Asami 1996-02-01 07:22:23 +00:00
parent 5fc948535c
commit 3f1ecbf68d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=2671

View File

@ -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)