diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2011-10-13 13:46:37 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2011-10-13 13:46:37 +0200 |
commit | c630da7a6c92e6bc1576803fb13e3cabc55ffad0 (patch) | |
tree | eaaba0e170e9a4895fc3187e2c396c2312e04c76 | |
parent | 771f44aa7c088671912a917af097b468e86005dc (diff) |
autotools: must include m4-repo in ACLOCAL_AMFLAGSlibsynthesis_3.4.0.16+syncevolution-1-2
Without it, "./config.status --recheck" will not find dk-warn.m4,
leading to:
syntax error near unexpected token `SYNTHESIS_WFLAGS,'
`DK_ARG_ENABLE_WARNINGS(SYNTHESIS_WFLAGS,'
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 9ae6ac1..961c5d7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,8 @@ EXTRA_DIST = # extra files which need to be removed during "make distclean" MAINTAINERCLEANFILES = Makefile.in config.guess config.sub configure depcomp install-sh ltmain.sh missing mkinstalldirs -ACLOCAL_AMFLAGS = -I m4 +# required for rebuilding autotools files via make +ACLOCAL_AMFLAGS = -I m4 -I m4-repo ${ACLOCAL_FLAGS} pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = synthesis.pc synthesis-sdk.pc |