scripts/checkdeps: check for distro specific packages

This commit is contained in:
Lukas Rusak 2016-11-17 23:20:35 -08:00
parent d9713afba3
commit a686a4cc5b
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3

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))}
}