gobjectification: 5795f7a4: fix a race condition that caused multi j...

grim at pidgin.im grim at pidgin.im
Tue Jul 14 23:50:22 EDT 2009


-----------------------------------------------------------------
Revision: 5795f7a47576f16a1932f44794a51682e296a362
Ancestor: 2ef380ad3a75f214245ca5e1a34e7fc3d4e23914
Author: grim at pidgin.im
Date: 2009-07-15T03:48:41
Branch: im.pidgin.gobjectification
URL: http://d.pidgin.im/viewmtn/revision/info/5795f7a47576f16a1932f44794a51682e296a362

Modified files:
        libpurple/Makefile.am

ChangeLog: 

fix a race condition that caused multi job builds to always fail


-------------- next part --------------
============================================================
--- libpurple/Makefile.am	8185e184741f4727c96ec17e30e3abe6fe35f3fe
+++ libpurple/Makefile.am	34c901bd3b48473346d46fc1b49cd61a03841c62
@@ -179,15 +179,15 @@ marshallers.h: marshallers.list
 
 marshallers.h: marshallers.list
 	@echo "Generating marshallers.h"
-	( @GLIB_GENMARSHAL@ --prefix=purple_smarshal $(srcdir)/marshallers.list --header > purple-marshal.tmp \
-	&& mv purple-marshal.tmp marshallers.h ) \
-	|| ( rm -f purple-marshal.tmp && exit 1 )
+	( @GLIB_GENMARSHAL@ --prefix=purple_smarshal $(srcdir)/marshallers.list --header > purple-marshal.h.tmp \
+	&& mv purple-marshal.h.tmp marshallers.h ) \
+	|| ( rm -f purple-marshal.h.tmp && exit 1 )
 
 marshallers.c: marshallers.list
 	@echo "Generating marshallers.c"
-	( @GLIB_GENMARSHAL@ --prefix=purple_smarshal $(srcdir)/marshallers.list --body > purple-marshal.tmp \
-	&& mv purple-marshal.tmp marshallers.c ) \
-        || ( rm -f purple-marshal.tmp && exit 1 )
+	( @GLIB_GENMARSHAL@ --prefix=purple_smarshal $(srcdir)/marshallers.list --body > purple-marshal.c.tmp \
+	&& mv purple-marshal.c.tmp marshallers.c ) \
+        || ( rm -f purple-marshal.c.tmp && exit 1 )
 
 if ENABLE_DBUS
 


More information about the Commits mailing list