X-Git-Url: http://git.maemo.org/git/?p=theonering;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=133446e07a5fbb75e6a5ed097e8bcd82b57392cd;hp=464402c25e49917f7da52282401c3bd70cb4631d;hb=02a126316c2b761233aed2d194e61074fc69620b;hpb=e442690ed48fc655ff27a6f6a5ddc8a3cd878554 diff --git a/support/builddeb.py b/support/builddeb.py index 464402c..133446e 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -44,8 +44,8 @@ rm -f ~/.telepathy-theonering/theonering.log def find_files(path): for root, dirs, files in os.walk(path): for file in files: - if file.startswith("src-"): - fileParts = file.split("-") + if file.startswith("src!"): + fileParts = file.split("!") unused, relPathParts, newName = fileParts[0], fileParts[1:-1], fileParts[-1] assert unused == "src" relPath = os.sep.join(relPathParts)