For some reason, the Python "os.putenv()" did not work, so changed
to morifying the "os.environ" variable directly.
#
# However, we do want to set the logging lock directory to somewhere
# to which we can write - use the current working directory. We then
- # set the appropriate environment variable.
+ # set the appropriate environment variable. os.putenv() doesn't work
+ # on Ubuntu, so we access os.environ directly.
lockdir_envvar = "B10_LOCKFILE_DIR_FROM_BUILD"
- lockdir = os.getenv(lockdir_envvar)
- if lockdir is None:
- os.putenv(lockdir_envvar, os.getcwd())
+ if lockdir_envvar not in os.environ:
+ os.environ[lockdir_envvar] = os.getcwd()
def tearDown(self):
pass
#
# However, we do want to set the logging lock directory to somewhere
# to which we can write - use the current working directory. We then
- # set the appropriate environment variable.
+ # set the appropriate environment variable. os.putenv() doesn't work
+ # on Ubuntu, so we access os.environ directly.
lockdir_envvar = "B10_LOCKFILE_DIR_FROM_BUILD"
- lockdir = os.getenv(lockdir_envvar)
- if lockdir is None:
- os.putenv(lockdir_envvar, os.getcwd())
+ if lockdir_envvar not in os.environ:
+ os.environ[lockdir_envvar] = os.getcwd()
def tearDown(self):
pass