scripts: check for git in create-uninstalled-setup.sh as well

This commit is contained in:
Tim-Philipp Müller 2016-02-20 00:55:30 +00:00
parent 806dbeeef3
commit 6b1e5cdd12

View file

@ -68,6 +68,8 @@ elif ! bison --version 2>/dev/null >/dev/null; then
DEPS_OK="no"
elif ! flex --version 2>/dev/null >/dev/null; then
DEPS_OK="no"
elif ! git --version 2>/dev/null >/dev/null; then
DEPS_OK="no"
else
DEPS_OK="yes"
fi
@ -77,7 +79,7 @@ echo "==========================================================================
echo ""
echo " Some very basic build tools or dependencies are missing."
echo ""
echo " Please install the following tools: pkg-config, bison, flex"
echo " Please install the following tools: pkg-config, bison, flex, git"
echo ""
echo " and the following libraries: GLib (libglib2.0-dev or glib2-devel)"
echo " and Orc (liborc-0.4-dev or orc-devel)"