From b86748469f151d147c2c40f68d5b02f7c49acc56 Mon Sep 17 00:00:00 2001 From: Eliot Horowitz Date: Mon, 30 Jan 2012 15:59:39 -0500 Subject: fix windows python issue --- site_scons/libdeps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'site_scons/libdeps.py') diff --git a/site_scons/libdeps.py b/site_scons/libdeps.py index 41080cc2210..b0ea118febf 100644 --- a/site_scons/libdeps.py +++ b/site_scons/libdeps.py @@ -187,7 +187,7 @@ def setup_environment(env): # TODO: remove this # this is a horrible horrible hack for # for 32-bit solaris - if os.uname()[1] == "sun32b": + if "uname" in dir(os) and os.uname()[1] == "sun32b": env['_LIBDEPS_LIBS'] = get_libdeps_objs else: env['_LIBDEPS_LIBS'] = get_libdeps -- cgit v1.2.1