[SCM] GNU gnutls branch, master, updated. gnutls_3_1_5-26-g330995a
"Ludovic Court??s" <[email protected]> Fri, 30 Nov 2012 23:53:29 +0000
| Newsgroups | gmane.comp.encryption.gpg.gnutls.cvs |
|---|---|
| Message-ID | <[email protected]> |
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 "GNU gnutls".
http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=330995a920037b6030ec0282b51dde3f8b493cad
The branch, master has been updated
via 330995a920037b6030ec0282b51dde3f8b493cad (commit)
from d2cb9f4089226e947e652cadfd62fed5e5ef0b64 (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 330995a920037b6030ec0282b51dde3f8b493cad
Author: Ludovic Courtès <[email protected]>
Date: Sat Dec 1 00:52:58 2012 +0100
guile: Fix dependencies to be parallel-safe.
-----------------------------------------------------------------------
Summary of changes:
guile/src/Makefile.am | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/guile/src/Makefile.am b/guile/src/Makefile.am
index f52eee9..1077502 100644
--- a/guile/src/Makefile.am
+++ b/guile/src/Makefile.am
@@ -25,9 +25,14 @@ EXTRA_DIST = \
make-enum-header.scm make-smob-header.scm \
make-session-priorities.scm
-BUILT_SOURCES = enum-map.i.c smob-types.i.c enums.h smobs.h \
- priorities.i.c \
- core.x errors.x
+# Files generated by the (gnutls build ...) modules.
+GENERATED_BINDINGS = \
+ enum-map.i.c smob-types.i.c enums.h smobs.h \
+ priorities.i.c
+
+BUILT_SOURCES = \
+ $(GENERATED_BINDINGS) \
+ core.x errors.x
CLEANFILES = $(BUILT_SOURCES)
@@ -97,7 +102,7 @@ priorities.i.c: $(srcdir)/make-session-priorities.scm
snarfcppopts = $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(CFLAGS) $(guile_gnutls_v_2_la_CFLAGS)
-.c.x: $(BUILT_SOURCES)
+.c.x: $(GENERATED_BINDINGS)
$(guile_snarf) -o $@ $< $(snarfcppopts)
# Target used by doc/Makefile, to create all built sources necessary
hooks/post-receive
--
GNU gnutls