[gnome-shell-build-setup.sh] Fix for lsb_release system value containing space
On SLED11, lsb_release system is "SUSE LINUX", breaking the script. Adding quotes fixes this issue. https://bugzilla.gnome.org/show_bug.cgi?id=627172
This commit is contained in:
parent
cac0848316
commit
6c6527b66d
@ -69,7 +69,7 @@ fi
|
|||||||
#
|
#
|
||||||
# (*) only needed for --xephyr
|
# (*) only needed for --xephyr
|
||||||
|
|
||||||
if test x$system = xUbuntu -o x$system = xDebian -o x$system = xLinuxMint ; then
|
if test "x$system" = xUbuntu -o "x$system" = xDebian -o "x$system" = xLinuxMint ; then
|
||||||
reqd=""
|
reqd=""
|
||||||
if [ ! -x /usr/bin/dpkg-checkbuilddeps ]; then
|
if [ ! -x /usr/bin/dpkg-checkbuilddeps ]; then
|
||||||
echo "Please run 'sudo apt-get install dpkg-dev' and try again."
|
echo "Please run 'sudo apt-get install dpkg-dev' and try again."
|
||||||
@ -96,7 +96,7 @@ if test x$system = xUbuntu -o x$system = xDebian -o x$system = xLinuxMint ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x$system = xFedora ; then
|
if test "x$system" = xFedora ; then
|
||||||
reqd="
|
reqd="
|
||||||
binutils curl gcc gcc-c++ make
|
binutils curl gcc gcc-c++ make
|
||||||
automake bison flex gettext git gnome-common gnome-doc-utils gvfs intltool
|
automake bison flex gettext git gnome-common gnome-doc-utils gvfs intltool
|
||||||
@ -122,7 +122,7 @@ if test x$system = xFedora ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x$system = xSUSE ; then
|
if test "x$system" = xSUSE -o "x$system" = "xSUSE LINUX" ; then
|
||||||
reqd=""
|
reqd=""
|
||||||
for pkg in \
|
for pkg in \
|
||||||
curl \
|
curl \
|
||||||
@ -142,7 +142,7 @@ if test x$system = xSUSE ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x$system = xMandrivaLinux ; then
|
if test "x$system" = xMandrivaLinux ; then
|
||||||
reqd=""
|
reqd=""
|
||||||
for pkg in \
|
for pkg in \
|
||||||
curl \
|
curl \
|
||||||
|
Loading…
Reference in New Issue
Block a user