From 99e8005137088aafb1350e23b113d69b01b0820f Mon Sep 17 00:00:00 2001 From: Gregory Neil Shapiro Date: Tue, 29 May 2001 17:55:49 +0000 Subject: [PATCH] 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 MFC after: 2 days --- share/sendmail/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/sendmail/Makefile b/share/sendmail/Makefile index 67b3b77741af..23fefebc4b91 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}