[git] GCRYPT - branch, master, updated. libgcrypt-1.7.3-93-gcdfd7ea
by Werner Koch
cvs at cvs.gnupg.org
Thu Jun 8 10:14:44 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, master has been updated
via cdfd7ea72a44657f037dd0dbba6e5ea0c2b344aa (commit)
from 9964d3a3fe0c79da79f9132998fe35923e31d92a (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 cdfd7ea72a44657f037dd0dbba6e5ea0c2b344aa
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
_______________________________________________
Gnupg-commits mailing list
Gnupg-commits at gnupg.org
http://lists.gnupg.org/mailman/listinfo/gnupg-commits
More information about the Gcrypt-devel
mailing list