diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rwxr-xr-x | autogen.sh | 2 |
2 files changed, 6 insertions, 1 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-12-31 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * autogen.sh: Port better to non-GNU 'cp'. | ||
| 4 | Problem reported by Han Boetes. | ||
| 5 | |||
| 1 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | * build-aux/git-hooks/commit-msg: Allow tabs. | 8 | * build-aux/git-hooks/commit-msg: Allow tabs. |
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 | |||
| 229 | *--backup*--verbose*) | 229 | *--backup*--verbose*) |
| 230 | cp_options='--backup=numbered --verbose';; | 230 | cp_options='--backup=numbered --verbose';; |
| 231 | *) | 231 | *) |
| 232 | cp_options='';; | 232 | cp_options='-f';; |
| 233 | esac | 233 | esac |
| 234 | 234 | ||
| 235 | if test -n "$tailored_hooks"; then | 235 | if test -n "$tailored_hooks"; then |