mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-27 07:33:54 +01:00
build.py: Add support for environment variable BUILD_EXCLUDE to build.py (presumably buggy)
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
d4eaf6a7ed
commit
0f81fcdddf
1 changed files with 5 additions and 0 deletions
|
|
@ -99,6 +99,11 @@ exclude=args.exclude
|
||||||
target=args.target
|
target=args.target
|
||||||
modules=args.modules
|
modules=args.modules
|
||||||
|
|
||||||
|
env_exclude=os.getenv('BUILD_EXCLUDE', '')
|
||||||
|
if len(env_exclude):
|
||||||
|
print "exluding modules from environment: " + env_exclude
|
||||||
|
exclude += " " + env_exclude
|
||||||
|
|
||||||
# -- build
|
# -- build
|
||||||
print "calculating order for modules: " + ' '.join(modules)
|
print "calculating order for modules: " + ' '.join(modules)
|
||||||
order = []
|
order = []
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue