Commit 4cc8b16f authored by Julien Muchembled's avatar Julien Muchembled

[gcc] move comment out of buildout value

parent b678addc
......@@ -49,11 +49,11 @@ init =
current = subprocess.check_output(('gcc', '-dumpversion'),
universal_newlines=True).strip()
self.system_version = current
# If we're still going to use the same GCC,
# the conditions have no impact on the dependant parts.
# If we're still going to use the same GCC,
# the conditions have no impact on the dependant parts.
min_version = options.pop('min_version', None)
max_version = options.pop('max_version', None)
###
###
if (parse_version(min_version or current)
<= parse_version(current)
<= parse_version(max_version or current)):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment