Unbreak installworld. Revision 1.41 of src/usr.bin/xinstall/xinstall.c

made the usage here incorrect.

Note that the change to install may cause other things to break, such as
the advice in src/etc/defaults/make.conf:

# Compare before install
#INSTALL=install -C

If users actually use this, any ${INSTALL} -d invocations in an installworld
will also fail.

Submitted by:	David Wolfskill <david@catwhisker.org>
MFC after:	2 days
This commit is contained in:
Gregory Neil Shapiro 2001-05-29 17:55:49 +00:00
parent 5f558fa42f
commit 99e8005137
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=77406

View File

@ -23,7 +23,7 @@ beforeinstall: ${SHARED}
copies::
.for dir in ${CFDIRS}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir}
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir}
.endfor
.for file in ${CFFILES}
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${SENDMAIL_DIR}/${file} ${DDIR}/${file}