Skip to content

Commit

Permalink
Merge pull request #3971 from chewitt/options92
Browse files Browse the repository at this point in the history
options: support per-buildsystem options
  • Loading branch information
MilhouseVH committed Dec 15, 2019
2 parents d97ed1c + c43b5f2 commit fa0aca6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -12,6 +12,9 @@
# mkpkg temp
mkpkg-temp

# options
/.libreelec

# private working directory
/.work/

Expand Down
7 changes: 6 additions & 1 deletion config/options
Expand Up @@ -86,7 +86,12 @@ VERBOSE="${VERBOSE:-yes}"
# directory.
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
. "${HOME}/.libreelec/options"
fi
Expand Down

0 comments on commit fa0aca6

Please sign in to comment.