diff options
| author | Paul Eggert | 2014-12-31 07:15:09 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-31 07:15:43 -0800 |
| commit | 93796baeee0707c77959ffad8f6c46e26c23bbbf (patch) | |
| tree | e64358268259cbc95448a175fb553476028d0555 | |
| parent | 9758516441411e217905ea07208152292775f32e (diff) | |
| download | emacs-93796baeee0707c77959ffad8f6c46e26c23bbbf.tar.gz emacs-93796baeee0707c77959ffad8f6c46e26c23bbbf.zip | |
* autogen.sh: Port better to non-GNU 'cp'.
Problem reported by Han Boetes.
| -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 |