summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-10-21 14:05:19 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-10-21 14:05:19 +0000
commit01e01d8f390bb42e0bee7562374a3a968c982a50 (patch)
tree6f7b8e4c3154287f1b8843e2fbdbbc8d62f61dd4 /buildtools
parent6ce96588ffccac67134f2c2632d99e381c9d69fb (diff)
downloadqpid-python-01e01d8f390bb42e0bee7562374a3a968c982a50.tar.gz
Sort Patches so they apply alphabetically
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@828021 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildtools')
-rwxr-xr-xbuildtools/buildCreator/buildCreator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildtools/buildCreator/buildCreator.py b/buildtools/buildCreator/buildCreator.py
index 70b0956dab..977a1d228a 100755
--- a/buildtools/buildCreator/buildCreator.py
+++ b/buildtools/buildCreator/buildCreator.py
@@ -614,6 +614,7 @@ def applyPatch(patch):
for root, dirs, files in os.walk(patchSource):
if '.svn' in dirs:
dirs.remove('.svn')
+ files.sort()
for patchName in files:
log("Applying patch '" + name + "'("+patchName+") to " + source)
runCommandShowError(basecommand + patchSource + PATH_SEP + patchName)