mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
scripts: check for git in create-uninstalled-setup.sh as well
This commit is contained in:
parent
806dbeeef3
commit
6b1e5cdd12
1 changed files with 3 additions and 1 deletions
|
@ -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)"
|
||||
|
|
Loading…
Reference in a new issue