From 8cd33d23b475f480034fe929de7d9d762864edc3 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Wed, 1 Jan 1997 05:04:34 +0000 Subject: [PATCH] Use -C instead of -c for installing non-header source files. --- share/examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/examples/Makefile b/share/examples/Makefile index 1e1062a7b93..5d36bea7ffe 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -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