summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-18 15:49:24 +0000
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-06-08 15:10:19 +0100
commit3784ae7edc461ba02536a69d367a2bb9c689b70b (patch)
tree1e5a4c97e45a903a26de278c3d11f23cccf6111b /autogen.sh
parent24b58d60a04564fc839cc32a7c01d9fbb878e045 (diff)
downloadempathy-3784ae7edc461ba02536a69d367a2bb9c689b70b.tar.gz
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 bb0d1f831..7c73adb9f 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 GIT"
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