From: Thierry Parmentelat Date: Wed, 28 Apr 2010 07:55:58 +0000 (+0000) Subject: fix pl_getDistro - was always returning Redhat X-Git-Tag: 5.0-rc8~44 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=267058f3b41b77c23fd316f6f654b82116377bf8;p=build.git fix pl_getDistro - was always returning Redhat --- diff --git a/build.common b/build.common index e179c1bc..390b6f34 100644 --- a/build.common +++ b/build.common @@ -18,9 +18,7 @@ export PATH=.:$PATH function pl_getDistro() { if [ -f "/etc/redhat-release" ] ; then distro=$(awk ' { print $1 } ' /etc/redhat-release) - if [ $distro="Red" ] ; then - distro="Redhat" - fi + case $distro in Red*) distro="Redhat" ; esac else echo "build.common.pl_getDistro-unknown" exit 1