diff options
author | marcel <marcel@FreeBSD.org> | 2000-07-23 16:33:00 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2000-07-23 16:33:00 +0000 |
commit | 510255570c2a4afd9f61014a1aa77a08879d0ca5 (patch) | |
tree | 230aad5a574f49a098368893bc77220edb5ec8fe /release/picobsd/build | |
parent | 314fd9990b8d7318d55df0fd6e87d0af6aa4cbf0 (diff) | |
download | FreeBSD-src-510255570c2a4afd9f61014a1aa77a08879d0ca5.zip FreeBSD-src-510255570c2a4afd9f61014a1aa77a08879d0ca5.tar.gz |
Backout addition of -L switch to mtree. Using -L breaks the
build process in too many cases. Adding mtree to bootstrap-tools
to solve this breaks the upgrade path because mtree needs a
libc that has strtofflags and fflagstostr.
Diffstat (limited to 'release/picobsd/build')
-rw-r--r-- | release/picobsd/build/Makefile.mfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/picobsd/build/Makefile.mfs b/release/picobsd/build/Makefile.mfs index 8e3d624..e7a2c95 100644 --- a/release/picobsd/build/Makefile.mfs +++ b/release/picobsd/build/Makefile.mfs @@ -14,9 +14,9 @@ all: tree links tree: @echo "--- making tree" @( if [ -f mfs.mtree ] ; then \ - mtree -deLU -f mfs.mtree -p ${DESTDIR}; \ + mtree -deU -f mfs.mtree -p ${DESTDIR}; \ else \ - mtree -deLU -f ../build/mfs.mtree -p ${DESTDIR} ; \ + mtree -deU -f ../build/mfs.mtree -p ${DESTDIR} ; \ fi ) links: tree |