Trim comments to fit more concisely.

This commit is contained in:
Jim Galarowicz 2017-02-13 09:55:22 -08:00
parent b4d3fd0071
commit 643a9f2ed0

View File

@ -226,8 +226,8 @@ def common_config_args(self):
@when('@3') @when('@3')
def configure(self): def configure(self):
# A user reported that this was necessary to link Qt3 on ubuntu # A user reported that this was necessary to link Qt3 on ubuntu.
# However, if LD_LIBRARY_PATH is not set the qt build fails, so check # However, if LD_LIBRARY_PATH is not set the qt build fails, check
# and set LD_LIBRARY_PATH if not set, update if it is set. # and set LD_LIBRARY_PATH if not set, update if it is set.
if not os.environ.get('LD_LIBRARY_PATH'): if not os.environ.get('LD_LIBRARY_PATH'):
os.environ['LD_LIBRARY_PATH'] = os.pathsep + os.getcwd() + '/lib' os.environ['LD_LIBRARY_PATH'] = os.pathsep + os.getcwd() + '/lib'