aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-18 23:49:24 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-02-23 22:50:43 +0800
commitf128fa86842918dc69b4d716b1f2ba36d1244639 (patch)
tree1205eb403ac6a2b6b78a3d30db38a619cf9c819d /autogen.sh
parent4c523367f4701db73fadc923f159511f6c07ac8c (diff)
downloadgsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar.gz
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar.bz2
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar.lz
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar.xz
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.tar.zst
gsoc2013-empathy-f128fa86842918dc69b4d716b1f2ba36d1244639.zip
Check for telepathy-yell if requested
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 9c091dc06..0e85e5cca 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,6 +17,18 @@ which gnome-autogen.sh || {
echo "You need to install gnome-common from the GNOME CVS"
exit 1
}
-USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
+# Fetch submodules if needed
+if test ! -f telepathy-yell/autogen.sh;
+then
+ echo "+ Setting up submodules"
+ git submodule init
+fi
+git submodule update
+
+# launch tp-yell's autogen.sh
+cd telepathy-yell
+sh autogen.sh --no-configure
+cd ..
+USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh