Merge pull request #943 from lrusak/checkdeps

scripts/checkdeps: check for distro specific packages
This commit is contained in:
MilhouseVH 2016-11-18 08:09:03 +00:00 committed by GitHub
commit 4ee20e8c71

View File

@ -70,6 +70,14 @@ if [ -n "$EXTRA_DEPS_PKG" ] ; then
deps_pkg="$deps_pkg $EXTRA_DEPS_PKG"
fi
# distro specific dependencies
if [ -n "$DISTRO_DEPS" ] ; then
deps="$deps $DISTRO_DEPS"
fi
if [ -n "$DISTRO_DEPS_PKG" ] ; then
deps_pkg="$deps_pkg $DISTRO_DEPS_PKG"
fi
getarg() {
eval echo \${$(($1+2))}
}