SF patch 773476: NameError when there are no prefixes.
diff --git a/Lib/site.py b/Lib/site.py
index cc6dd39..3e93a07 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -91,11 +91,16 @@
 # using the -S option for Python.  See http://www.python.org/sf/586680
 if (os.name == "posix" and sys.path and
     os.path.basename(sys.path[-1]) == "Modules"):
-    from distutils.util import get_platform
-    s = "build/lib.%s-%.3s" % (get_platform(), sys.version)
+    s = "build/lib.%s-%.3s" % ("linux-i686", sys.version)
     s = os.path.join(os.path.dirname(sys.path[-1]), s)
     sys.path.append(s)
-    del get_platform, s
+##if (os.name == "posix" and sys.path and
+##    os.path.basename(sys.path[-1]) == "Modules"):
+##    from distutils.util import get_platform
+##    s = "build/lib.%s-%.3s" % (get_platform(), sys.version)
+##    s = os.path.join(os.path.dirname(sys.path[-1]), s)
+##    sys.path.append(s)
+##    del get_platform, s
 
 def _init_pathinfo():
     global _dirs_in_sys_path
@@ -158,6 +163,7 @@
         _dirs_in_sys_path = None
 
 prefixes = [sys.prefix]
+sitedir = None # make sure sitedir is initialized because of later 'del'
 if sys.exec_prefix != sys.prefix:
     prefixes.append(sys.exec_prefix)
 for prefix in prefixes: