diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-12-28 21:29:40 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-01-09 18:13:19 +0800 |
commit | d626e269cd10cce37a1ca54ff7474ae6aee16df4 (patch) | |
tree | 11e52c5cc985630741d0a061920586bc99a00907 | |
parent | 796b0b439794ca55b7c4114787f80f830ad0e598 (diff) | |
download | gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar.gz gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar.bz2 gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar.lz gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar.xz gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.tar.zst gsoc2013-empathy-d626e269cd10cce37a1ca54ff7474ae6aee16df4.zip |
extensions: fix parallel build
Based on a similar fix from Debarshi Ray:
f1ab42c0c5332e47b33ecf905afd7fd6c2a344e8
https://bugzilla.gnome.org/show_bug.cgi?id=688132
-rw-r--r-- | extensions/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/Makefile.am b/extensions/Makefile.am index 65f2f5e01..789821dc2 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -98,7 +98,9 @@ _gen/misc.xml: misc.xml $(wildcard *.xml) $(tools_dir)/xincludator.py @$(mkdir_p) _gen $(AM_V_GEN)$(PYTHON) $(tools_dir)/xincludator.py $< > $@ -_gen/cli-misc-body.h _gen/cli-misc.h: _gen/misc.xml \ +_gen/cli-misc-body.h: _gen/cli-misc.h + +_gen/cli-misc.h: _gen/misc.xml \ $(tools_dir)/glib-client-gen.py $(AM_V_GEN)$(PYTHON) $(tools_dir)/glib-client-gen.py \ --group=misc \ |