[PATCH] afmongodb: Include libmongo-client/configure.gnu in the tarball
In order to install cleanly with an internal libmongo-client, we need that library to be compiled in statically, which is what the configure.gnu script (installed via autogen.sh from git) enforces. However, since configure.gnu is not part of libmongo-client, its make dist will not include it, so its parent must do that. For this reason, and similarly to how the same file in lib/ivykis is handled, include libmongo-client/configure.gnu in the EXTRA_DIST of afmongodb/Makefile.am. Reported-by: Peter Czanik <czanik@balabit.hu> Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- modules/afmongodb/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/afmongodb/Makefile.am b/modules/afmongodb/Makefile.am index d022912..eb6b27b 100644 --- a/modules/afmongodb/Makefile.am +++ b/modules/afmongodb/Makefile.am @@ -17,7 +17,7 @@ libafmongodb_la_LDFLAGS = $(MODULE_LDFLAGS) endif BUILT_SOURCES = afmongodb-grammar.y afmongodb-grammar.c afmongodb-grammar.h -EXTRA_DIST = $(BUILT_SOURCES) afmongodb-grammar.ym +EXTRA_DIST = $(BUILT_SOURCES) afmongodb-grammar.ym libmongo-client/configure.gnu include $(top_srcdir)/build/lex-rules.am -- 1.7.9
participants (1)
-
Gergely Nagy