summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/install4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/install b/bin/install
index a587fa0096..ab316f61a4 100755
--- a/bin/install
+++ b/bin/install
@@ -1,6 +1,6 @@
#!/bin/sh
-source $(dirname $0)/wrapper.sh
+. $(dirname $0)/wrapper.sh
saved=""
while getopts dbCcMpSsvB:f:g:m:o:D opt; do
@@ -28,7 +28,7 @@ for arg; do
save "$arg"
done
-if [ $# == 2 -a -n "$createleading" ]; then
+if [ $# -eq 2 -a -n "$createleading" ]; then
install -d $(dirname $2)
fi