Date: Sat, 23 Nov 1996 00:03:08 +0100 From: "Philippe Charnier" <charnier@xp11.frmug.org> To: current@FreeBSD.org Subject: /usr/src/share/examples uses install -C. Why? Message-ID: <199611222303.AAA23207@xp11.frmug.org>
next in thread | raw e-mail | index | archive | help
Hi, While browsing /usr and subdirs, to see if some `no longuer exist' files are still in my -current tree, I noticed that /usr/share/examples is updated using install -C. As there is no dependencies to the build process reverting the feature to install -c would be nice for -current users. Index: Makefile =================================================================== RCS file: /home2h/FreeBSD.cvsroot/src/share/examples/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- Makefile 1996/09/06 06:30:57 1.20 +++ Makefile 1996/11/22 22:49:49 @@ -21,7 +21,7 @@ FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print .for file in ${FILES} copies:: - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file} + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file} .endfor .endfor ------ ------ Philippe Charnier charnier@lirmm.fr (smtp) charnier@xp11.frmug.org (uucp) ``a PC not running FreeBSD is like a venusian with no tentacles'' ------------------------------------------------------------------------
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199611222303.AAA23207>