From e01a9c299b4455d77d527fdbe46c13bca38210f3 Mon Sep 17 00:00:00 2001 From: Jacob Leach Date: Mon, 19 Jan 2004 18:30:23 +0000 Subject: [PATCH] builddir != srcdir fix. --- ChangeLog | 4 ++++ libsoup/Makefile.am | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bfbfc75..954bf77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-16 Jason Leach + + * libsoup/Makefile.am: builddir != srcdir fixes. + 2004-01-14 Joe Shaw * libsoup/soup-gnutls.c (verify_certificate): Remove the diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am index 75515fb..dd41718 100644 --- a/libsoup/Makefile.am +++ b/libsoup/Makefile.am @@ -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 ) -- 2.7.4