diff options
author | JP Rosevear <jpr@ximian.com> | 2004-02-25 05:51:23 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-02-25 05:51:23 +0800 |
commit | 853561bc90bbafe4a09dbb76d68d142277075565 (patch) | |
tree | 40b50a3e6fc5d96cb38af624a1b2707fb5e82339 /marshal.mk | |
parent | 3b0f3efe44bf506fdc788e8dab56ec1b685bf013 (diff) | |
download | gsoc2013-evolution-853561bc90bbafe4a09dbb76d68d142277075565.tar.gz gsoc2013-evolution-853561bc90bbafe4a09dbb76d68d142277075565.tar.zst gsoc2013-evolution-853561bc90bbafe4a09dbb76d68d142277075565.zip |
make sure to use the srcdir to build the list
2004-02-24 JP Rosevear <jpr@ximian.com>
* marshal.mk: make sure to use the srcdir to build the list
svn path=/trunk/; revision=24854
Diffstat (limited to 'marshal.mk')
-rw-r--r-- | marshal.mk | 4 |
1 files 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 ) |