From 71a8583c43555987bc92422ef044fa999f5b93c1 Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Fri, 28 Jan 2011 17:00:53 -0500 Subject: [PATCH] b=21581 fix typo; add Fedora Fix a typo. Add Fedora for the yum cases per Andreas. LU-47 Change-Id: Ie4e6fd9860dcd1c6280cdd907c54bd2e50aab7cc --- build/autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/autogen.sh b/build/autogen.sh index e150bc2..888f6f2 100644 --- a/build/autogen.sh +++ b/build/autogen.sh @@ -31,10 +31,10 @@ error_msg() { echo -e "To install $cmd, you can use the command:\n# $1" } case $dist_id in - fUbuntu) howto "apt-get install $cmd" ;; - CentOS|RedHat*) howto "yum install $cmd" ;; - SUSE*) howto "yast -i $cmd" ;; - *) echo -e "\nInstallation instructions for the package $cmd on $dist_id are not known.\nIf you know how to install the required package, please file a bug at\njira.whamcloud.com and include your distribution and that the output from:\n\"lsb_release -is\" is: \"$dist_id\"" ;; + Ubuntu) howto "apt-get install $cmd" ;; + CentOS|RedHat*|Fedora*) howto "yum install $cmd" ;; + SUSE*) howto "yast -i $cmd" ;; + *) echo -e "\nInstallation instructions for the package $cmd on $dist_id are not known.\nIf you know how to install the required package, please file a bug at\njira.whamcloud.com and include your distribution and that the output from:\n\"lsb_release -is\" is: \"$dist_id\"" ;; esac exit 1 -- 1.8.3.1