summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/scripts/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/install.sh b/support/scripts/install.sh
index 352b47f75a..fb26219b51 100644
--- a/support/scripts/install.sh
+++ b/support/scripts/install.sh
@@ -53,7 +53,7 @@ function install-copy() {
local dstfile="$1"; shift 1;
run cp "$srcfile" "$dstfile";
if [ "$preserve" == "true" ]; then
- touch --reference="$srcfile" "$dstfile";
+ touch -r "$srcfile" "$dstfile";
fi;
install-attr "$dstfile";
}