builddir != srcdir fix.
authorJacob Leach <jleach@src.gnome.org>
Mon, 19 Jan 2004 18:30:23 +0000 (18:30 +0000)
committerJacob Leach <jleach@src.gnome.org>
Mon, 19 Jan 2004 18:30:23 +0000 (18:30 +0000)
ChangeLog
libsoup/Makefile.am

index bfbfc75..954bf77 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-16  Jason Leach  <leach@wam.umd.edu>
+
+       * libsoup/Makefile.am: builddir != srcdir fixes.
+
 2004-01-14  Joe Shaw  <joe@ximian.com>
 
        * libsoup/soup-gnutls.c (verify_certificate): Remove the
index 75515fb..dd41718 100644 (file)
@@ -11,12 +11,12 @@ INCLUDES =                          \
 MARSHAL_GENERATED = soup-marshal.c soup-marshal.h
 
 soup-marshal.h: soup-marshal.list
-       ( @GLIB_GENMARSHAL@ --prefix=soup_marshal soup-marshal.list --header > soup-marshal.tmp \
+       ( @GLIB_GENMARSHAL@ --prefix=soup_marshal $(srcdir)/soup-marshal.list --header > soup-marshal.tmp \
        && mv soup-marshal.tmp soup-marshal.h ) \
        || ( rm -f soup-marshal.tmp && exit 1 )
 
 soup-marshal.c: soup-marshal.h
-       ( (echo '#include "soup-marshal.h"'; @GLIB_GENMARSHAL@ --prefix=soup_marshal soup-marshal.list --body) > soup-marshal.tmp \
+       ( (echo '#include "soup-marshal.h"'; @GLIB_GENMARSHAL@ --prefix=soup_marshal $(srcdir)/soup-marshal.list --body) > soup-marshal.tmp \
        && mv soup-marshal.tmp soup-marshal.c ) \
        || ( rm -f soup-marshal.tmp && exit 1 )