diff options
author | marcel <marcel@FreeBSD.org> | 1999-12-15 18:08:56 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-12-15 18:08:56 +0000 |
commit | 021e5674bad14adae0616be527c8f8807aae1ee8 (patch) | |
tree | 63bb391dfaa1fea5f5d1c2be5150ef8b732bb774 /tools | |
parent | d86e78f4678f6197491bd939cf2e577454aa012d (diff) | |
download | FreeBSD-src-021e5674bad14adae0616be527c8f8807aae1ee8.zip FreeBSD-src-021e5674bad14adae0616be527c8f8807aae1ee8.tar.gz |
Don't use -C internally. Use -c. For some reason files are not copied
with -C, although they should.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install.sh b/tools/install.sh index d9bf225..f89d73a 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 $* |