We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2a1058 + f675e16 commit 2f625a1Copy full SHA for 2f625a1
ebuildtester/docker.py
@@ -290,8 +290,12 @@ def _install_basics(self):
290
291
def _enable_global_use(self):
292
"""Enable global USE settings."""
293
- for u in options.options.global_use:
294
- self.execute("euse --enable %s" % u)
+ if not options.options.global_use:
+ options.log.info("no global USE flags given, skipping")
295
+ else:
296
+ options.log.info("setting global USE flags")
297
+ for u in options.options.global_use:
298
+ self.execute("euse --enable %s" % u)
299
300
def _set_gcc(self):
301
"""Set gcc in the container."""
0 commit comments