From 7a24407ecc7e680073048143af9e836d57131b29 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Tue, 17 Sep 2013 17:30:18 -0700 Subject: [PATCH] Remove unneeded bc dependency fixes #212 --- util/install.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/util/install.sh b/util/install.sh index 42d4b3a..59e9bbf 100755 --- a/util/install.sh +++ b/util/install.sh @@ -43,9 +43,6 @@ if [ "$DIST" = "Ubuntu" ] || [ "$DIST" = "Debian" ]; then if ! which lsb_release &> /dev/null; then $install lsb-release fi - if ! which bc &> /dev/null; then - $install bc - fi fi test -e /etc/fedora-release && DIST="Fedora" if [ "$DIST" = "Fedora" ]; then @@ -56,9 +53,6 @@ if [ "$DIST" = "Fedora" ]; then if ! which lsb_release &> /dev/null; then $install redhat-lsb-core fi - if ! which bc &> /dev/null; then - $install bc - fi fi if which lsb_release &> /dev/null; then DIST=`lsb_release -is`