summaryrefslogtreecommitdiff
path: root/mate-dictionary
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-11-20 01:11:54 +0300
committermonsta <[email protected]>2017-04-27 15:48:29 +0300
commitd98d7f289c11745280a92d9c316be12e9d592b0f (patch)
tree3b469a2356435096317032cddcc55010fc5be7ac /mate-dictionary
parent5aff33a1c9df94478e085933509d166c64ce8173 (diff)
downloadmate-utils-d98d7f289c11745280a92d9c316be12e9d592b0f.tar.bz2
mate-utils-d98d7f289c11745280a92d9c316be12e9d592b0f.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
Diffstat (limited to 'mate-dictionary')
-rw-r--r--mate-dictionary/libgdict/Makefile.am16
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