mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
scripts/checkdeps: allow project specific deps
projects can define EXTRA_DEPS and EXTRA_DEPS_PKG in projects/xxx/options
This commit is contained in:
parent
1be50aa391
commit
573cb65e9a
@ -48,6 +48,14 @@ case $1 in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# project specific dependencies
|
||||||
|
if [ -n "$EXTRA_DEPS" ] ; then
|
||||||
|
deps="$deps $EXTRA_DEPS"
|
||||||
|
fi
|
||||||
|
if [ -n "$EXTRA_DEPS_PKG" ] ; then
|
||||||
|
deps_pkg="$deps_pkg $EXTRA_DEPS_PKG"
|
||||||
|
fi
|
||||||
|
|
||||||
getarg() {
|
getarg() {
|
||||||
eval echo \${$(($1+2))}
|
eval echo \${$(($1+2))}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user