From 155755d247b76d4334254a2eb4cfa3dcc3e663f0 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Fri, 13 Feb 2015 14:06:34 +0530 Subject: [PATCH] Added gcc as a dependency --- install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install b/install index 336a37aa..7857b936 100644 --- a/install +++ b/install @@ -39,13 +39,13 @@ function install_dep() # Install Python3 on users system ee_lib_echo "Installing pre depedencies" if [ "$EE_LINUX_DISTRO" == "Ubuntu" ]; then - apt-get -y install python-software-properties software-properties-common python3 python3-apt python3-setuptools python3-dev sqlite3 git || ee_lib_error "Unable to install pre depedencies, exit status " 1 + apt-get -y install gcc python-software-properties software-properties-common python3 python3-apt python3-setuptools python3-dev sqlite3 git || ee_lib_error "Unable to install pre depedencies, exit status " 1 elif [ "$EE_LINUX_DISTRO" == "Debian" ]; then - apt-get -y install graphviz python-software-properties python3 python3-apt python3-setuptools python3-dev sqlite3 git || ee_lib_error "Unable to pre depedencies, exit status " 1 + apt-get -y install gcc graphviz python-software-properties python3 python3-apt python3-setuptools python3-dev sqlite3 git || ee_lib_error "Unable to pre depedencies, exit status " 1 fi # Generating Locale - locale-gen en &>> /dev/null + locale-gen en &>> /dev/null } function sync_db()