diff options
author | Frederic Roussel <fr.frasc@gmail.com> | 2009-10-23 09:48:22 -0700 |
---|---|---|
committer | fr frasc <fr.frasc@gmail.com> | 2009-10-23 09:48:22 -0700 |
commit | 1215142d577fe524b5597af2110b2ec54c4ae4a8 (patch) | |
tree | d108a9897eb114a7f1215438e07c5afc0a8f38db /scripts/functions | |
parent | 288173ce56309b762c11d0e8c11d18c828ed14bc (diff) | |
download | crosstool-ng-1215142d577fe524b5597af2110b2ec54c4ae4a8.tar.gz crosstool-ng-1215142d577fe524b5597af2110b2ec54c4ae4a8.tar.bz2 crosstool-ng-1215142d577fe524b5597af2110b2ec54c4ae4a8.zip |
scripts/functions: Fix a variable name.
Signed-off-by: Frederic Roussel <fr.frasc@gmail.com>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index 62a2f993..bbafeefe 100644 --- a/scripts/functions +++ b/scripts/functions @@ -612,7 +612,7 @@ CT_Patch() { CT_DoLog EXTRA "Patching '${basename}'" bundled_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}" - local_patch_dir="${CT_CUSTOM_PATCH_DIR}/${base_file}/${ver_file}" + local_patch_dir="${CT_LOCAL_PATCH_DIR}/${base_file}/${ver_file}" case "${CT_PATCH_ORDER}" in bundled) patch_dirs=("${bundled_patch_dir}");; |