]> granicus.if.org Git - python/commitdiff
Translate spaces in the machine name to underscores
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 6 Jan 2003 13:28:12 +0000 (13:28 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 6 Jan 2003 13:28:12 +0000 (13:28 +0000)
    (Power Macintosh -> Power_Macintosh)

Lib/distutils/util.py

index 17fc320aa6c50d75179f01db1ae6280dba576918..dc3183b6918a19997f5d55a77ef43fc8a180db3b 100644 (file)
@@ -40,10 +40,11 @@ def get_platform ():
 
     (osname, host, release, version, machine) = os.uname()
 
-    # Convert the OS name to lowercase and remove '/' characters
-    # (to accommodate BSD/OS)
+    # Convert the OS name to lowercase, remove '/' characters
+    # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh")
     osname = string.lower(osname)
     osname = string.replace(osname, '/', '')
+    machine = string.replace(machine, ' ', '_')
 
     if osname[:5] == "linux":
         # At least on Linux/Intel, 'machine' is the processor --