summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-08-31 10:51:53 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-08-31 10:51:53 (GMT)
commitb09e70bda5f9e5e559f6aeea95ba15035b3654a3 (patch)
treee06c3603c767b89d2aa8276205cdbf1409cd0560 /scripts
parentdc836b5e4d3e4ab48cb3a665cd46f7efdf2af4e1 (diff)
config: add the local,bundled patch order
This ordering first applies the local patches, then the bundeld ones.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/functions1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/functions b/scripts/functions
index 4cfa78d..02e2eee 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -618,6 +618,7 @@ CT_Patch() {
bundled) patch_dirs=("${bundled_patch_dir}");;
local) patch_dirs=("${local_patch_dir}");;
bundled,local) patch_dirs=("${bundled_patch_dir}" "${local_patch_dir}");;
+ local,bundled) patch_dirs=("${local_patch_dir}" "${bundled_patch_dir}");;
esac
for d in "${patch_dirs[@]}"; do