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

[gcc] move comment out of buildout value

parent b678addc
...@@ -49,11 +49,11 @@ init = ...@@ -49,11 +49,11 @@ init =
current = subprocess.check_output(('gcc', '-dumpversion'), current = subprocess.check_output(('gcc', '-dumpversion'),
universal_newlines=True).strip() universal_newlines=True).strip()
self.system_version = current self.system_version = current
# If we're still going to use the same GCC, # If we're still going to use the same GCC,
# the conditions have no impact on the dependant parts. # the conditions have no impact on the dependant parts.
min_version = options.pop('min_version', None) min_version = options.pop('min_version', None)
max_version = options.pop('max_version', None) max_version = options.pop('max_version', None)
### ###
if (parse_version(min_version or current) if (parse_version(min_version or current)
<= parse_version(current) <= parse_version(current)
<= parse_version(max_version or 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