diff options
author | Ryan Lortie <desrt@velocity.(none)> | 2012-11-13 11:50:14 -0500 |
---|---|---|
committer | David Zeuthen <zeuthen@gmail.com> | 2012-11-13 12:00:24 -0500 |
commit | 7bd30764a5230684c7c979a08a83dfa6e327f719 (patch) | |
tree | b62c19e095176d015be07e17652b2be7c8e76422 /src/polkitagent | |
parent | 59f2d96ce3ac63173669f299a9453a7bf5e70a70 (diff) | |
download | polkit-7bd30764a5230684c7c979a08a83dfa6e327f719.tar.gz |
build: Fix .gir generation for parallel make
As per the intructions in the introspection Makefile, we should have a
line declaring a dependency between the .gir and .la files.
https://bugs.freedesktop.org/show_bug.cgi?id=57077
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
Diffstat (limited to 'src/polkitagent')
-rw-r--r-- | src/polkitagent/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/polkitagent/Makefile.am b/src/polkitagent/Makefile.am index 1cfb73c..5b7d4c7 100644 --- a/src/polkitagent/Makefile.am +++ b/src/polkitagent/Makefile.am @@ -108,6 +108,8 @@ if HAVE_INTROSPECTION girdir = $(INTROSPECTION_GIRDIR) gir_DATA = PolkitAgent-1.0.gir +PolkitAgent-1.0.gir: libpolkit-agent-1.la + typelibsdir = $(INTROSPECTION_TYPELIBDIR) typelibs_DATA = PolkitAgent-1.0.typelib |