summaryrefslogtreecommitdiff
path: root/src/engine/SCons/Debug.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2006-04-01 11:30:40 +0000
committerSteven Knight <knight@baldmt.com>2006-04-01 11:30:40 +0000
commit5e36fe4beb10b2d7819ba54f91bfec03ec67f646 (patch)
tree2f7812957ecd562c1a41f3620121c474fde5cef5 /src/engine/SCons/Debug.py
parent7939be2bdec408bc2596f549f73ca307b62bdf2b (diff)
downloadscons-5e36fe4beb10b2d7819ba54f91bfec03ec67f646.tar.gz
Fix directory separators to allow the Debug.caller() function to strip unnecessary parts of path names on Windows.
Diffstat (limited to 'src/engine/SCons/Debug.py')
-rw-r--r--src/engine/SCons/Debug.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/engine/SCons/Debug.py b/src/engine/SCons/Debug.py
index cc97fe02..1cff9c6c 100644
--- a/src/engine/SCons/Debug.py
+++ b/src/engine/SCons/Debug.py
@@ -31,10 +31,11 @@ needed by most users.
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-
-# Recipe 14.10 from the Python Cookbook.
+import os
import string
import sys
+
+# Recipe 14.10 from the Python Cookbook.
try:
import weakref
except ImportError:
@@ -152,6 +153,12 @@ shorten_list = [
( '/usr/lib/python', 0),
]
+if os.sep != '/':
+ def platformize(t):
+ return (string.replace(t[0], '/', os.sep), t[1])
+ shorten_list = map(platformize, shorten_list)
+ del platformize
+
def func_shorten(func_tuple):
f = func_tuple[0]
for t in shorten_list: