From 949427c208159f4ac580f547dd5465a70b4751b7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 21 Feb 2011 16:46:58 +1100 Subject: python: use os.environ[] instead of os.putenv() using os.putenv() causes too much confusion, as it doesn't update os.getenv() Pair-Programmed-With: Andrew Bartlett --- script/land.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script/land.py') diff --git a/script/land.py b/script/land.py index 4b7d1cacba..f8ae7b4493 100755 --- a/script/land.py +++ b/script/land.py @@ -26,7 +26,7 @@ samba_master_ssh = os.getenv('SAMBA_MASTER_SSH', 'git+ssh://git.samba.org/data/g cleanup_list = [] -os.putenv('CC', "ccache gcc") +os.environ['CC'] = "ccache gcc" tasks = { "source3" : [ ("autogen", "./autogen.sh", "text/plain"), -- cgit