summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Blakey-Milner <nbm@FreeBSD.org>2000-07-18 12:17:54 +0000
committerNeil Blakey-Milner <nbm@FreeBSD.org>2000-07-18 12:17:54 +0000
commitec082028efda8febf4be528e6734922fa025e4ea (patch)
tree16b5825cae9a2b7de671b6f529434b8995ebf90c
parentd295906767b3b2290783743f978a787f7bd1cc24 (diff)
Notes
-rw-r--r--release/picobsd/custom/Makefile.mfs12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/picobsd/custom/Makefile.mfs b/release/picobsd/custom/Makefile.mfs
index e941a4a392f2..23fc3863567f 100644
--- a/release/picobsd/custom/Makefile.mfs
+++ b/release/picobsd/custom/Makefile.mfs
@@ -7,27 +7,27 @@ DESTDIR?=${MFS_MOUNTPOINT}
SBIN_LINKS= bin stand
USR_LINKS= bin sbin libexec
PL_LOCALE_LINKS= pl polish
-MY_DEVS= std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0 ttyd0 cuaa0 wd1 wd2 wd3 bpf0 bpf1 sa0 sa1
+MY_DEVS= std tun2 cuaa0 cuaa1 vty10 fd0 pty0 ttyd0 bpf0 sa0 ad0s1 ad0s1a
all: tree links
tree:
@echo "--- making tree"
- mtree -deLU -f mfs.mtree -p ${DESTDIR}
+ @mtree -deLU -f ${.CURDIR}/mfs.mtree -p ${DESTDIR} 2>&1 > /dev/null
links: tree
@echo "--- making links"
- (cd ${DESTDIR}; \
+ @(cd ${DESTDIR}; \
for i in ${SBIN_LINKS}; \
do \
- ln -s /sbin $${i}; \
+ ln -s sbin $${i}; \
done; \
cd var/run; \
ln -s /dev/null log; \
cd ../../usr; \
for i in ${USR_LINKS}; \
do \
- ln -s /sbin $${i}; \
+ ln -s ../sbin $${i}; \
done; \
cd share/misc;\
ln -s /etc/termcap termcap; )
@@ -36,7 +36,7 @@ links: tree
# We don't do it under 'all' because it's needed only on non-DEVFS systems
devnodes: tree
@echo "--- making device nodes"
- (cd ${DESTDIR}/dev; \
+ @(cd ${DESTDIR}/dev; \
ln -s /dev/MAKEDEV; \
./MAKEDEV ${MY_DEVS}; \
rm MAKEDEV)