summaryrefslogtreecommitdiff
path: root/build-aux/install-sh
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-08-27 06:28:41 -0700
committerKarl Berry <karl@freefriends.org>2019-08-27 06:28:41 -0700
commitd77a23b15925e5554325ea3553c940133734eee3 (patch)
tree5e3170c1717df8ef9e971f4e82c041138de54c9e /build-aux/install-sh
parent56663b473535ad7e6259606297a7e1f182deca9a (diff)
downloadgnulib-d77a23b15925e5554325ea3553c940133734eee3.tar.gz
autoupdate
Diffstat (limited to 'build-aux/install-sh')
-rwxr-xr-xbuild-aux/install-sh13
1 files changed, 12 insertions, 1 deletions
diff --git a/build-aux/install-sh b/build-aux/install-sh
index 8175c640fe..20d8b2eaea 100755
--- a/build-aux/install-sh
+++ b/build-aux/install-sh
@@ -451,7 +451,18 @@ do
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
# Copy the file name to the temp name.
- (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
+ (umask $cp_umask &&
+ { test -z "$stripcmd" || {
+ # Create $dsttmp read-write so that cp doesn't create it read-only,
+ # which would cause strip to fail.
+ if test -z "$doit"; then
+ : >"$dsttmp" # No need to fork-exec 'touch'.
+ else
+ $doit touch "$dsttmp"
+ fi
+ }
+ } &&
+ $doit_exec $cpprog "$src" "$dsttmp") &&
# and set any options; do chmod last to preserve setuid bits.
#