aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>1999-12-10 10:14:06 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>1999-12-10 10:14:06 +0000
commit168f8d16483bdc63235170797c8ad5343ced9184 (patch)
treecc86e485d3b1b26222eae61a80d8748146fae1db /tools
parentf8c8918755a6a40d3c94cc302ad258d565230929 (diff)
downloadsrc-168f8d16483bdc63235170797c8ad5343ced9184.tar.gz
src-168f8d16483bdc63235170797c8ad5343ced9184.zip
Use install -C -p instead of cp -p.
Pointed out by: bde
Notes
Notes: svn path=/head/; revision=54389
Diffstat (limited to 'tools')
-rw-r--r--tools/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install.sh b/tools/install.sh
index b17230891463..d9bf225f21b8 100644
--- a/tools/install.sh
+++ b/tools/install.sh
@@ -38,5 +38,5 @@ while [ ! -z $1 ]; do
esac
done
-# the remaining arguments can be fed to cp
-exec cp -p $*
+# the remaining arguments are assumed to be files/dirs only.
+exec install -C -p $*