diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-12-31 07:15:09 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-12-31 07:15:43 -0800 |
commit | 93796baeee0707c77959ffad8f6c46e26c23bbbf (patch) | |
tree | e64358268259cbc95448a175fb553476028d0555 /autogen.sh | |
parent | 9758516441411e217905ea07208152292775f32e (diff) | |
download | emacs-93796baeee0707c77959ffad8f6c46e26c23bbbf.tar.gz |
* autogen.sh: Port better to non-GNU 'cp'.
Problem reported by Han Boetes.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 69812cdcfe0..30e1877fbae 100755 --- a/autogen.sh +++ b/autogen.sh @@ -229,7 +229,7 @@ if test -d .git/hooks; then *--backup*--verbose*) cp_options='--backup=numbered --verbose';; *) - cp_options='';; + cp_options='-f';; esac if test -n "$tailored_hooks"; then |