diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-01-01 05:04:34 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-01-01 05:04:34 +0000 |
commit | 8cd33d23b475f480034fe929de7d9d762864edc3 (patch) | |
tree | ee8fa741b9912caaad3170d4d5f3ee31621577ce | |
parent | fd0a86436ed09487458788dd5f53cb2718d68188 (diff) | |
download | src-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/Makefile | 4 |
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 |