summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgshapiro <gshapiro@FreeBSD.org>2001-05-29 17:55:49 +0000
committergshapiro <gshapiro@FreeBSD.org>2001-05-29 17:55:49 +0000
commit6709d5cb0cba6c2b7897b943a8a49cb42034ab88 (patch)
treed5959be35125990662997a3929a317e958331932
parentfdb42dd4bf429f38a9ffc635d5c04d380f354ee6 (diff)
downloadFreeBSD-src-6709d5cb0cba6c2b7897b943a8a49cb42034ab88.zip
FreeBSD-src-6709d5cb0cba6c2b7897b943a8a49cb42034ab88.tar.gz
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
-rw-r--r--share/sendmail/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile
index 67b3b77..23fefeb 100644
--- a/share/sendmail/Makefile
+++ b/share/sendmail/Makefile
@@ -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}
OpenPOWER on IntegriCloud