summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-12-15 18:08:56 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-12-15 18:08:56 +0000
commit24066d32091615f1813cfbf93efd53df955feb40 (patch)
treed607e76ccdfffd4daeb30f66ce151a1ff45bb418
parent6c249bacea340232dca3c655c81657a673040918 (diff)
downloadsrc-test2-24066d32091615f1813cfbf93efd53df955feb40.tar.gz
src-test2-24066d32091615f1813cfbf93efd53df955feb40.zip
Don't use -C internally. Use -c. For some reason files are not copied
with -C, although they should.
Notes
Notes: svn path=/head/; revision=54648
-rw-r--r--tools/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh
index d9bf225f21b8..f89d73a5d36f 100644
--- a/tools/install.sh
+++ b/tools/install.sh
@@ -39,4 +39,4 @@ while [ ! -z $1 ]; do
done
# the remaining arguments are assumed to be files/dirs only.
-exec install -C -p $*
+exec install -c -p $*