From 853561bc90bbafe4a09dbb76d68d142277075565 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Tue, 24 Feb 2004 21:51:23 +0000 Subject: make sure to use the srcdir to build the list 2004-02-24 JP Rosevear * marshal.mk: make sure to use the srcdir to build the list svn path=/trunk/; revision=24854 --- marshal.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/marshal.mk b/marshal.mk index 9d4298deae..91fac93ff3 100644 --- a/marshal.mk +++ b/marshal.mk @@ -1,7 +1,7 @@ %.h: %.list - ( $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $< --header > $@.tmp \ + ( $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $(srcdir)/$< --header > $@.tmp \ && mv $@.tmp $@ ) || ( rm -f $@.tmp && exit 1 ) %.c: %.list %.h - ( (echo "#include \"$*.h\""; $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $*.list --body) > $@.tmp \ + ( (echo "#include \"$*.h\""; $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $(srcdir)/$*.list --body) > $@.tmp \ && mv $@.tmp $@ ) || ( rm -f $@.tmp && exit 1 ) -- cgit