From c82032d7bf6d186d1b69fa4f982e3bd7625e4144 Mon Sep 17 00:00:00 2001 From: monsta Date: Sun, 20 Nov 2016 01:11:54 +0300 Subject: fix distcheck breakage that somehow was hiding here for years unnoticed ported from: https://git.gnome.org/browse/gnome-dictionary/commit/?id=eaacf80e9b135d5c7085f899e2bea0076557bc53 --- mate-dictionary/libgdict/Makefile.am | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/mate-dictionary/libgdict/Makefile.am b/mate-dictionary/libgdict/Makefile.am index c8cb3fa5..6c0e23a0 100644 --- a/mate-dictionary/libgdict/Makefile.am +++ b/mate-dictionary/libgdict/Makefile.am @@ -91,7 +91,7 @@ stamp-gdict-marshal.h: gdict-marshal.list $(GLIB_GENMARSHAL) Makefile $(AM_V_GEN)$(GLIB_GENMARSHAL) $< --header --prefix=gdict_marshal > xgen-gmh \ && ( cmp -s xgen-gmh gdict-marshal.h || cp xgen-gmh gdict-marshal.h ) \ && rm -f xgen-gmh \ - && echo timestamp > $(@F) + && echo timestamp > $@ gdict-marshal.c: gdict-marshal.list $(GLIB_GENMARSHAL) Makefile $(AM_V_GEN)( echo "#include \"gdict-marshal.h\""; echo; \ @@ -102,19 +102,15 @@ gdict-marshal.c: gdict-marshal.list $(GLIB_GENMARSHAL) Makefile gdict-enum-types.h: stamp-gdict-enum-types.h @true stamp-gdict-enum-types.h: $(sources_h) gdict-enum-types.h.in Makefile - $(AM_V_GEN)( cd $(srcdir) && \ - $(GLIB_MKENUMS) \ - --template $(srcdir)/gdict-enum-types.h.in \ - $(sources_h) ) > xgen-ceth \ + $(AM_V_GEN) $(GLIB_MKENUMS) --template $(srcdir)/gdict-enum-types.h.in \ + $(sources_h) > xgen-ceth \ && ( cmp -s xgen-ceth gdict-enum-types.h || cp xgen-ceth gdict-enum-types.h ) \ && rm -f xgen-ceth \ - && echo timestamp > $(@F) + && echo timestamp > $@ gdict-enum-types.c: gdict-enum-types.h gdict-enum-types.c.in Makefile - $(AM_V_GEN)( cd $(srcdir) && \ - $(GLIB_MKENUMS) \ - --template $(srcdir)/gdict-enum-types.c.in \ - $(sources_h) ) > xgen-cetc \ + $(AM_V_GEN) $(GLIB_MKENUMS) --template $(srcdir)/gdict-enum-types.c.in \ + $(sources_h) > xgen-cetc \ && cp xgen-cetc gdict-enum-types.c \ && rm -f xgen-cetc -- cgit v1.2.1