-L of mtree should be before -p, not after (since -p takes an argument, d'oh!)

Submitted by:	Donn Miller <dmmiller@cvzoom.net>
This commit is contained in:
Satoshi Asami 2000-07-20 20:54:24 +00:00
parent 8e2e779ef6
commit 91c5e64744
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=30924

View file

@ -912,7 +912,7 @@ MTREE_FILE= /etc/mtree/BSD.local.dist
.endif
MTREE_CMD?= /usr/sbin/mtree
.if ${OSVERSION} >= 500010
MTREE_ARGS?= -U -f ${MTREE_FILE} -d -e -p -L
MTREE_ARGS?= -U -f ${MTREE_FILE} -L -d -e -p
.else
MTREE_ARGS?= -U -f ${MTREE_FILE} -d -e -p
.endif