Mercurial > pidgin
changeset 26071:49a10f6f3bb4
Make sure marshallers.h is created before compiling marshallers.c.
Thanks to Alan Hamlett for having this issue.
author | Mike Ruprecht <maiku@soc.pidgin.im> |
---|---|
date | Sat, 31 Jan 2009 05:37:27 +0000 |
parents | 7be8c88d630c |
children | 4cbf594b2f17 |
files | libpurple/Makefile.am |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/Makefile.am Sat Jan 31 05:19:16 2009 +0000 +++ b/libpurple/Makefile.am Sat Jan 31 05:37:27 2009 +0000 @@ -148,7 +148,7 @@ @echo "Generating marshallers.h" $(GLIB_GENMARSHAL) --prefix=purple_smarshal $(srcdir)/marshallers.list --header > marshallers.h -marshallers.c: marshallers.list +marshallers.c: marshallers.list marshallers.h @echo "Generating marshallers.c" echo "#include \"marshallers.h\"" > marshallers.c $(GLIB_GENMARSHAL) --prefix=purple_smarshal $(srcdir)/marshallers.list --body >> marshallers.c