Patch from Bastian Kleineidam <calvin@cs.uni-sb.de>:
make 'mkdir()' return list of directories created.
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index b40373c..6351bc7 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -38,11 +38,11 @@
     # we're not using a recursive algorithm)
 
     name = os.path.normpath (name)
-
+    created_dirs = []
     if os.path.isdir (name) or name == '':
-        return
+        return created_dirs
     if PATH_CREATED.get (name):
-        return
+        return created_dirs
 
     (head, tail) = os.path.split (name)
     tails = [tail]                      # stack of lone dirs to create
@@ -70,11 +70,13 @@
         if not dry_run:
             try:
                 os.mkdir (head)
+                created_dirs.append(head)
             except os.error, (errno, errstr):
                 raise DistutilsFileError, \
                       "could not create '%s': %s" % (head, errstr)
 
         PATH_CREATED[head] = 1
+    return created_dirs
 
 # mkpath ()