diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2023-03-09 21:52:19 -0800 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-03-16 16:54:22 +1300 |
commit | db942c3d0d105952957779232a7df46343f39648 (patch) | |
tree | f22d5bf1092ed82df3511ff06e38bd1cdb84c8d0 /bootstrap | |
parent | fa05153eba3ee259635ffb2ce2789386d339c077 (diff) | |
download | crosstool-ng-db942c3d0d105952957779232a7df46343f39648.tar.gz crosstool-ng-db942c3d0d105952957779232a7df46343f39648.tar.bz2 crosstool-ng-db942c3d0d105952957779232a7df46343f39648.zip |
Add option for experimental bundled patches
This adds 3 new options to patch order:
* bundled + bundled_exp
* bundled + bundled_exp + local
* local + bundled + bundled_exp
The path for bundled experimental patches is: ${CT_LIB_DIR}/packages/${pkg_dir}/experimental
and patches that are still being reviewed, but not yet applied upstream
may be toggled with ENABLE_EXPERIMENTAL_BUNDLED_PATCHES.
Also fix modelines for editors on bootstrap and scripts/functions, and
fix mix whitespace in scripts/functions.
Closes: #1916
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,5 +1,7 @@ #!/usr/bin/env bash +# -*- mode: bash; tab-width: 4 -*- # vi: ts=4:sw=4:et +# vim: filetype=bash if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then echo "Your BASH shell version (${BASH_VERSION}) is too old." >&2 |