diff options
author | Xan Lopez <xan@gnome.org> | 2009-12-31 04:18:52 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-12-31 04:23:09 +0800 |
commit | 2a11d43e280b62beba558f84217ce941954e09da (patch) | |
tree | a154cf7f79a1f604d4ae2517faf3c6fab7a49551 | |
parent | 91b770eb4e9532e69272afcef687be99a2c4c966 (diff) | |
download | gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar.gz gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar.bz2 gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar.lz gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar.xz gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.tar.zst gsoc2013-epiphany-2a11d43e280b62beba558f84217ce941954e09da.zip |
Disable introspection for distcheck
There's a (apparently) nasty circular dependency issue when doing
distcheck with introspection enabled. The .gir file needs the epiphany
binary to be built, so basically when doing the dist part of check
copying the files to the temp directory we trigger a full build. This
would be already bad, but on top of that it does not work, since we
use BUILT_SOURCES for some generated files, which does not work during
'make dist'.
So disable it while we figure this out.
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c76d1a998..5b5d1d1b9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,6 +31,7 @@ DISTCLEANFILES = \ DISTCHECK_CONFIGURE_FLAGS = \ --enable-zeroconf \ --enable-gtk-doc \ + --disable-introspection \ --disable-schemas-install \ --disable-scrollkeeper |