diff options
author | monsta <[email protected]> | 2016-11-20 01:11:54 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-20 01:11:54 +0300 |
commit | c82032d7bf6d186d1b69fa4f982e3bd7625e4144 (patch) | |
tree | 3b469a2356435096317032cddcc55010fc5be7ac | |
parent | c0497fa6075aabd2d6cc9109b1af50cf49e5771e (diff) | |
download | mate-utils-c82032d7bf6d186d1b69fa4f982e3bd7625e4144.tar.bz2 mate-utils-c82032d7bf6d186d1b69fa4f982e3bd7625e4144.tar.xz |
fix distcheck breakage that somehow was hiding here for years unnoticed
ported from:
https://git.gnome.org/browse/gnome-dictionary/commit/?id=eaacf80e9b135d5c7085f899e2bea0076557bc53
-rw-r--r-- | mate-dictionary/libgdict/Makefile.am | 16 |
1 files 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 |