summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/Makefile.am2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 19c99ba9..152e4e03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
-2002-05-27 Mikael Hallendal <micke@codefactory.se>
+2002-05-27 Mikael Hallendal <micke@codefactory.se>
+
+ * Release 0.9
+
+ * src/Makefile.am: build fix for marshallers.
* NEWS: updated for 0.9
diff --git a/src/Makefile.am b/src/Makefile.am
index b3cf7816..6771728d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -45,11 +45,13 @@ install-exec-local:
ln -s yelp $(DESTDIR)$(bindir)/gnome-help
yelp-marshal.h: yelp-marshal.list
+ cd $(srcdir) && \
( @GLIB_GENMARSHAL@ --prefix=yelp_marshal yelp-marshal.list --header > yelp-marshal1.tmp \
&& mv yelp-marshal1.tmp yelp-marshal.h ) \
|| ( rm -f yelp-marshal1.tmp && exit 1 )
yelp-marshal.c: yelp-marshal.h
+ cd $(srcdir) && \
( @GLIB_GENMARSHAL@ --prefix=yelp_marshal yelp-marshal.list --body > yelp-marshal2.tmp \
&& mv yelp-marshal2.tmp yelp-marshal.c ) \
|| ( rm -f yelp-marshal2.tmp && exit 1 )