Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Olivier Stasse
Gepetto Utils
Commits
776f81bd
Commit
776f81bd
authored
Feb 19, 2019
by
Olivier Stasse
Browse files
[scripts/robotpkg_helpers] Add display information to RobotpkgPackage.
parent
6f46ab25
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/robotpkg_helpers/package.py
View file @
776f81bd
...
...
@@ -48,9 +48,18 @@ class RobotpkgPackage:
print
(
self
.
includes_mk
)
if
hasattr
(
self
,
'depend_mk_system_pkg'
):
print
(
"Depend SYSTEM in depend.mk:"
)
print
(
self
.
depend_mk_system_pkg
)
if
not
len
(
self
.
depend_mk_system_pkg
)
==
0
:
print
(
"Depend SYSTEM in depend.mk:"
)
print
(
self
.
depend_mk_system_pkg
)
if
hasattr
(
self
,
'tree_of_includes_os'
):
print
(
"tree_of_includes_os:"
)
print
(
self
.
tree_of_includes_os
)
if
hasattr
(
self
,
'tree_of_includes_dep'
):
print
(
"tree_of_includes_dep:"
)
print
(
self
.
tree_of_includes_dep
)
def
analyze_makefile
(
self
,
make_content
):
""" This methods analyzes the contents of the string make_content.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment