summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xqpid/buildtools/buildCreator/buildCreator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/buildtools/buildCreator/buildCreator.py b/qpid/buildtools/buildCreator/buildCreator.py
index 70b0956dab..977a1d228a 100755
--- a/qpid/buildtools/buildCreator/buildCreator.py
+++ b/qpid/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)