From 96023f3e42e84369c226c8a9eaba70d92e770047 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 07 Aug 2007 12:13:23 +0000 Subject: Fix regeneration of ./configure from configure.ac when using make To use an m4 macro library you need three things: * configure.ac mentions it (OK) * autogen.sh mentions it (OK) * Makefile.am mentions it (fixed by this patch) Omission of the third part means that when you change configure.ac and run make, ./configure is rebuilt without using the m4 directory, so autoconf doesn't load python.m4 and the rebuild fails. --- (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index b47df4d..45f7370 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 + SUBDIRS = bin data lib po shell sugar services bin_SCRIPTS = \ -- cgit v0.9.1