diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-12-14 21:43:37 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-02-02 20:06:32 +1300 |
commit | 7f6fe28ce013d2ea9684f781624e57b9b4dff7c7 (patch) | |
tree | 83b36e2210dcacea324bbe450f402c49aabc8e96 /bootstrap | |
parent | 914c794fc2d4433b8796bd977a93afa0803ec42b (diff) | |
download | crosstool-ng-7f6fe28ce013d2ea9684f781624e57b9b4dff7c7.tar.gz crosstool-ng-7f6fe28ce013d2ea9684f781624e57b9b4dff7c7.tar.bz2 crosstool-ng-7f6fe28ce013d2ea9684f781624e57b9b4dff7c7.zip |
bootstrap: Escape mirrors
When we have mirrors set to $(CT_Mirror foo bar) we need some extra
escaping so that they get interpreted correctly by kconfig.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -596,6 +596,8 @@ enter_fork() info[repository_url]=${info[repository]#* } fi + info[mirrors]=${info[mirrors]//$\(/\\$\(} + versions=`cd packages/${fork} && \ for f in */version.desc; do [ -r "${f}" ] && echo "${f%/version.desc}"; done` versions=`sort_versions ${versions}` |