summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2009-02-19 13:13:14 +0100
committerGravatar Stephane Glondu <steph@glondu.net>2009-02-19 13:13:14 +0100
commita0a94c1340a63cdb824507b973393882666ba52a (patch)
tree73aa4eb32cbd176379bc91b21c184e2a6882bfe3 /install.sh
parentcfbfe13f5b515ae2e3c6cdd97e2ccee03bc26e56 (diff)
Imported Upstream version 8.2-1+dfsgupstream/8.2-1+dfsg
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 0719ca77..277222f5 100755
--- a/install.sh
+++ b/install.sh
@@ -1,13 +1,13 @@
#! /bin/sh
-dest=$1
+dest="$1"
shift
for f; do
bn=`basename $f`
dn=`dirname $f`
- install -d $dest/$dn
- install -m 644 $f $dest/$dn/$bn
+ install -d "$dest/$dn"
+ install -m 644 $f "$dest/$dn/$bn"
done