diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-01-13 09:22:37 +0100 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-01-13 09:22:37 +0100 |
commit | 96237b9a63a50aed1884cb06f84279b977d6a8fa (patch) | |
tree | 36699a6c857a8af5f4c52e18853a1740b09fc2f4 /Makefile.am | |
parent | ssh: Accept OpenSSH *cert-v01 key variants. (diff) | |
download | gnupg2-96237b9a63a50aed1884cb06f84279b977d6a8fa.tar.xz gnupg2-96237b9a63a50aed1884cb06f84279b977d6a8fa.zip |
Fix to support git worktree.
* autogen.sh, Makefile.am, doc/Makefile.am: Use -e for testing .git.
--
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 8e213f3bc..8bff2ef94 100644 --- a/Makefile.am +++ b/Makefile.am @@ -120,7 +120,7 @@ endif gen_start_date = 2011-12-01T06:00:00 .PHONY: gen-ChangeLog gen-ChangeLog: - if test -d $(top_srcdir)/.git; then \ + if test -e $(top_srcdir)/.git; then \ (cd $(top_srcdir) && \ $(GITLOG_TO_CHANGELOG) --append-dot --tear-off \ --amend=build-aux/git-log-fix \ |