diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-10-28 14:24:33 +0100 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-10-28 17:02:30 +0100 |
commit | 4d0d2af917188bc7cf8cc505d2b775949c66f89e (patch) | |
tree | fb47725b2337071d54aaea8e753c51aab5707ad7 /autogen.sh | |
parent | aac2bbd81d96e228c7d14a5cb91ea4082f581d03 (diff) |
set up telepathy-yell in the gabble build system
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh index b6dff981b..26e33cb71 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,10 +16,10 @@ fi autoreconf -i -f -# Fetch Wocky if needed -if test ! -f lib/ext/wocky/autogen.sh; +# Fetch submodules if needed +if test ! -f lib/ext/wocky/autogen.sh -o ! -f lib/ext/telepathy-yell/autogen.sh; then - echo "+ Setting up Wocky submodule" + echo "+ Setting up submodules" git submodule init fi git submodule update @@ -29,6 +29,11 @@ cd lib/ext/wocky sh autogen.sh --no-configure cd ../../.. +# launch tp-yell's autogen.sh +cd lib/ext/telepathy-yell +sh autogen.sh --no-configure +cd ../../.. + run_configure=true for arg in $*; do case $arg in |