mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
options: support per-buildsystem options
This commit is contained in:
parent
e01c5c0ee2
commit
cf58340a27
3
.gitignore
vendored
3
.gitignore
vendored
@ -12,6 +12,9 @@
|
|||||||
# mkpkg temp
|
# mkpkg temp
|
||||||
mkpkg-temp
|
mkpkg-temp
|
||||||
|
|
||||||
|
# options
|
||||||
|
/.libreelec
|
||||||
|
|
||||||
# private working directory
|
# private working directory
|
||||||
/.work/
|
/.work/
|
||||||
|
|
||||||
|
@ -86,7 +86,12 @@ VERBOSE="${VERBOSE:-yes}"
|
|||||||
# directory.
|
# directory.
|
||||||
CCACHE_CACHE_SIZE="10G"
|
CCACHE_CACHE_SIZE="10G"
|
||||||
|
|
||||||
# read options from $HOME if available
|
# read local persistent options from $ROOT if available
|
||||||
|
if [ -f "${ROOT}/.libreelec/options" ]; then
|
||||||
|
. "${ROOT}/.libreelec/options"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# read global persistent options from $HOME if available
|
||||||
if [ -f "${HOME}/.libreelec/options" ]; then
|
if [ -f "${HOME}/.libreelec/options" ]; then
|
||||||
. "${HOME}/.libreelec/options"
|
. "${HOME}/.libreelec/options"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user