aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-01-01 05:04:34 +0000
committerBruce Evans <bde@FreeBSD.org>1997-01-01 05:04:34 +0000
commit8cd33d23b475f480034fe929de7d9d762864edc3 (patch)
treeee8fa741b9912caaad3170d4d5f3ee31621577ce
parentfd0a86436ed09487458788dd5f53cb2718d68188 (diff)
downloadsrc-8cd33d23b475f480034fe929de7d9d762864edc3.tar.gz
src-8cd33d23b475f480034fe929de7d9d762864edc3.zip
Use -C instead of -c for installing non-header source files.
Notes
Notes: svn path=/head/; revision=21159
-rw-r--r--share/examples/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile
index 1e1062a7b930..5d36bea7ffe2 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