diff options
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index fca013a62f..cbd14b3d72 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2005-07-26 Jody Goldberg <jody@gnome.org> + + * Makefile.am : Fix build breakage due to extra whitespace after a + backslash. + 2005-07-26 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Fix make distcheck issues. diff --git a/composer/Makefile.am b/composer/Makefile.am index c8c5f58239..64ea51d3d2 100644 --- a/composer/Makefile.am +++ b/composer/Makefile.am @@ -40,7 +40,7 @@ noinst_LTLIBRARIES = libcomposer.la INCLUDES = \ -I$(top_srcdir) \ -I$(top_builddir) \ - -I$(top_builddir)/composer \ + -I$(top_builddir)/composer \ -I$(top_srcdir)/widgets \ -I$(top_builddir)/widgets \ -I$(top_srcdir)/widgets/misc \ |