mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-25 15:03:55 +01:00
projects.py: Remove messages for build-order output
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
78a0b5fa1c
commit
6224f48900
1 changed files with 3 additions and 2 deletions
|
|
@ -223,14 +223,15 @@ class Build(object):
|
||||||
exclude += " " + env_exclude
|
exclude += " " + env_exclude
|
||||||
|
|
||||||
# -- build
|
# -- build
|
||||||
if target != 'order' and not args.build_order:
|
|
||||||
print("calculating order for modules ... ")
|
|
||||||
order = []
|
order = []
|
||||||
|
|
||||||
glob_prereq_types = [ "build" ]
|
glob_prereq_types = [ "build" ]
|
||||||
if re.match("pkg-.*", target) is not None:
|
if re.match("pkg-.*", target) is not None:
|
||||||
glob_prereq_types = [ "build", "run", "release", "devel" ]
|
glob_prereq_types = [ "build", "run", "release", "devel" ]
|
||||||
|
|
||||||
|
if target != 'order' and not args.build_order:
|
||||||
print("using prerequisite types " + ' '.join(glob_prereq_types))
|
print("using prerequisite types " + ' '.join(glob_prereq_types))
|
||||||
|
print("calculating order for modules ... ")
|
||||||
|
|
||||||
self.calculate_order(order, modules, glob_prereq_types)
|
self.calculate_order(order, modules, glob_prereq_types)
|
||||||
if args.ignore_deps:
|
if args.ignore_deps:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue