summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-06-22 18:09:04 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-06-22 18:09:04 +0000
commit0bad90a02bba4f8fe098187b2f8a781ac4029fe6 (patch)
treedf2bdb84048676be457dc167ae5a58978fc3e1dd
parent70b7b5f5602cd62ee906ad548f3d64d00414b4d5 (diff)
downloadpango-0bad90a02bba4f8fe098187b2f8a781ac4029fe6.tar.gz
Bug 345600 – cvs build error in pango/opentype/Makefile
2006-06-22 Behdad Esfahbod <behdad@gnome.org> Bug 345600 – cvs build error in pango/opentype/Makefile * pango/opentype/Makefile.am: Rename variable SOURCES to MAINSOURCES. Some automake versions seem to use it or something.
-rw-r--r--ChangeLog7
-rw-r--r--pango/opentype/Makefile.am4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 274a03fb..9a6f1ba3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-06-22 Behdad Esfahbod <behdad@gnome.org>
+
+ Bug 345600 – cvs build error in pango/opentype/Makefile
+
+ * pango/opentype/Makefile.am: Rename variable SOURCES to MAINSOURCES.
+ Some automake versions seem to use it or something.
+
2006-06-21 Behdad Esfahbod <behdad@gnome.org>
Bug 345511 – -no-undefined problem with new libtool
diff --git a/pango/opentype/Makefile.am b/pango/opentype/Makefile.am
index 8d65294e..dff2a1b8 100644
--- a/pango/opentype/Makefile.am
+++ b/pango/opentype/Makefile.am
@@ -5,7 +5,7 @@ INCLUDES = \
noinst_LTLIBRARIES = libharfbuzz-1.la
-SOURCES = \
+MAINSOURCES = \
ftglue.c \
harfbuzz-buffer.c \
harfbuzz-dump.c \
@@ -34,7 +34,7 @@ PRIVATEHEADERS = \
harfbuzz-open-private.h
libharfbuzz_1_la_SOURCES = \
- $(SOURCES) \
+ $(MAINSOURCES) \
$(PUBLICHEADERS) \
$(PRIVATEHEADERS)