Use -C instead of -c for installing non-header source files.

This commit is contained in:
Bruce Evans 1997-01-01 05:04:34 +00:00
parent fd0a86436e
commit 8cd33d23b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21159

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.19 1996/01/21 17:57:25 bde Exp $
# $Id: Makefile,v 1.20 1996/09/06 06:30:57 jkh Exp $
#
# Doing a make install builds /usr/share/examples
@ -21,7 +21,7 @@ beforeinstall: ${SHARED}
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