changeset 20037:ba649e93098b

it seems that "SOURCES" is a reserved variable in some versions of automake, which was causing this to break the build badly for me
author Stu Tomlinson <stu@nosnilmot.com>
date Fri, 14 Sep 2007 15:38:40 +0000
parents 2dc6f3ab2ab3
children 1691f4c9b6a8
files libpurple/protocols/myspace/Makefile.am
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/myspace/Makefile.am	Fri Sep 14 15:37:53 2007 +0000
+++ b/libpurple/protocols/myspace/Makefile.am	Fri Sep 14 15:38:40 2007 +0000
@@ -2,7 +2,7 @@
 
 pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
 
-SOURCES = markup.c \
+MSIMSOURCES = markup.c \
 	  markup.h \
 	  message.c \
 	  message.h \
@@ -24,14 +24,14 @@
 
 st = -DPURPLE_STATIC_PRPL
 noinst_LIBRARIES     = libmyspace.a
-libmyspace_a_SOURCES = $(SOURCES)
+libmyspace_a_SOURCES = $(MSIMSOURCES)
 libmyspace_a_CFLAGS  = $(AM_CFLAGS)
 
 else
 
 st =
 pkg_LTLIBRARIES       = libmyspace.la
-libmyspace_la_SOURCES = $(SOURCES)
+libmyspace_la_SOURCES = $(MSIMSOURCES)
 libmyspace_la_LIBADD  = $(GLIB_LIBS)
 
 endif