Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/osbuilder.py
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2009-12-22 10:22:56 (GMT)
committer Daniel Drake <dsd@laptop.org>2009-12-22 10:29:10 (GMT)
commitff0ecaa400cee645db07efb42158edf8b522fed0 (patch)
treeced4ad0cf51b3a452d4fc636cab09e5ead58c6cc /osbuilder.py
parent3b528230dfae4792e58ab2c1c7f0da8b80463c36 (diff)
Fix execution of parts with identical names
Diffstat (limited to 'osbuilder.py')
-rwxr-xr-xosbuilder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/osbuilder.py b/osbuilder.py
index a4865fb..05a1984 100755
--- a/osbuilder.py
+++ b/osbuilder.py
@@ -121,7 +121,7 @@ class Stage(object):
for part in partlist:
bname = os.path.basename(part)
mod = os.path.basename(os.path.dirname(part))
- parts[bname] = os.path.join(mod, bname)
+ parts[bname + "//" + mod] = os.path.join(mod, bname)
items = parts.keys()
items.sort()