gnome-shell-build-setup.sh: Fix installing jhbuild

jhbuild now requires autogen.sh to be run, even when not using autotools.

https://bugzilla.gnome.org/show_bug.cgi?id=668440
This commit is contained in:
Owen W. Taylor 2012-02-09 08:58:44 -05:00
parent d0fd5641c1
commit 540e970170

View File

@ -263,8 +263,11 @@ else
echo "done"
fi
echo "Installing jhbuild..."
(cd $SOURCE/jhbuild && make -f Makefile.plain DISABLE_GETTEXT=1 bindir=$HOME/bin install >/dev/null)
echo -n "Installing jhbuild ... "
(cd $SOURCE/jhbuild &&
./autogen.sh --simple-install &&
make -f Makefile.plain DISABLE_GETTEXT=1 bindir=$HOME/bin install) >/dev/null
echo "done"
if [ -e $HOME/.jhbuildrc ] ; then
if grep JHBUILDRC_GNOME_SHELL $HOME/.jhbuildrc > /dev/null ; then : ; else