2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

Corrected a Python error in the configuration.py Boost Build test script that might have caused the test to crash on startup if the surrounding environment had the 'UGNABUNGA_FOO_BAR_BAZ_FEE_FAE_FOU_FAM' environment set.

[SVN r78886]
This commit is contained in:
Jurko Gospodnetić
2012-06-11 02:15:09 +00:00
parent e9326dbbfa
commit f2fa5efbd4

View File

@@ -239,7 +239,7 @@ def _canSetEmptyEnvironmentVariable():
if original is None:
os.unsetenv(dummyName)
else:
os.putenv(dummyName)
os.putenv(dummyName, original)
return result