[git] GCRYPT - branch, LIBGCRYPT-1-7-BRANCH, updated. libgcrypt-1.7.7-2-g12ba983
by Werner Koch
cvs at cvs.gnupg.org
Thu Jun 8 10:17:10 CEST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU crypto library".
The branch, LIBGCRYPT-1-7-BRANCH has been updated
via 12ba983bb3be707d590706530dc1def1a048d6d2 (commit)
from d0e778432b2b9a993b39aae4901e95e07bcce555 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 12ba983bb3be707d590706530dc1def1a048d6d2
Author: Werner Koch <wk at gnupg.org>
Date: Thu Jun 8 10:10:47 2017 +0200
build: Fix ChangeLog building for builds from other worktrees.
* Makefile.am (gen-ChangeLog): Test for existance of ".git" regardless
on whether it is a file or directory.
--
git worktree create a plain file ".git" and not a ".git" directory.
Thus we can't check for the existance of a directory.
Signed-off-by: Werner Koch <wk at gnupg.org>
diff --git a/Makefile.am b/Makefile.am
index f946df2..f97af7f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -78,7 +78,7 @@ distcheck-hook:
gen_start_date = 2011-12-01T14: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 \
-----------------------------------------------------------------------
Summary of changes:
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The GNU crypto library
http://git.gnupg.org
More information about the Gnupg-commits
mailing list