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:
parent
d0fd5641c1
commit
540e970170
@ -263,8 +263,11 @@ else
|
|||||||
echo "done"
|
echo "done"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Installing jhbuild..."
|
echo -n "Installing jhbuild ... "
|
||||||
(cd $SOURCE/jhbuild && make -f Makefile.plain DISABLE_GETTEXT=1 bindir=$HOME/bin install >/dev/null)
|
(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 [ -e $HOME/.jhbuildrc ] ; then
|
||||||
if grep JHBUILDRC_GNOME_SHELL $HOME/.jhbuildrc > /dev/null ; then : ; else
|
if grep JHBUILDRC_GNOME_SHELL $HOME/.jhbuildrc > /dev/null ; then : ; else
|
||||||
|
Loading…
Reference in New Issue
Block a user