From 80d31525129772575d8fe953cfe307a720846872 Mon Sep 17 00:00:00 2001 From: Matthew Brush Date: Mon, 24 Jun 2019 17:30:54 -0700 Subject: [PATCH] Devhelp: Fix embedded library's use of glib-genmarshal --- devhelp/devhelp/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/devhelp/devhelp/Makefile.am b/devhelp/devhelp/Makefile.am index a962dc9e7..d87601b72 100644 --- a/devhelp/devhelp/Makefile.am +++ b/devhelp/devhelp/Makefile.am @@ -77,8 +77,7 @@ libdevhelp_2_la_LDFLAGS = \ -no-undefined dh-marshal.h: dh-marshal.list - $(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=_dh_marshal dh-marshal.list > $@ + $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=_dh_marshal --header --output=$@ dh-marshal.list dh-marshal.c: dh-marshal.list - $(AM_V_GEN) echo "#include \"dh-marshal.h\"" > $@ && \ - $(GLIB_GENMARSHAL) $< --body --prefix=_dh_marshal dh-marshal.list >> $@ + $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=_dh_marshal --body --output=$@ dh-marshal.list