From 96023f3e42e84369c226c8a9eaba70d92e770047 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 7 Aug 2007 13:13:23 +0100 Subject: [PATCH 1/2] 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. --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index b47df4d7..45f73708 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 = \ From 5ebc0c8212f762025cf6f42fad040cd04cb58ebd Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Tue, 14 Aug 2007 16:47:43 -0400 Subject: [PATCH 2/2] Snapshot d93122bf5e. --- NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS b/NEWS index ed28aa34..0068c953 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +Snapshot d93122bf5e + * #2751 Add keybindings for max/min brightness/volume Snapshot 040c94d181