diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-25 08:42:19 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-26 13:01:37 -0700 |
commit | 5324905c1446d898d9a8f578555c1e54a2fbc89c (patch) | |
tree | 28df75e6babbdeb07b202f76eb8d1e6f9308a72a /config/global | |
parent | 961ea1938204e4fc9199c2ff5933caaa1e3d0710 (diff) | |
download | crosstool-ng-5324905c1446d898d9a8f578555c1e54a2fbc89c.tar.gz crosstool-ng-5324905c1446d898d9a8f578555c1e54a2fbc89c.tar.bz2 crosstool-ng-5324905c1446d898d9a8f578555c1e54a2fbc89c.zip |
Fix glibc-ports with the new framework
While here, also consider patched by anything other than "bundled patches"
as per-target sources. Add scary warnings in case of a failure.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/global')
-rw-r--r-- | config/global/extract.in | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/config/global/extract.in b/config/global/extract.in index 582e69c2..58f7b956 100644 --- a/config/global/extract.in +++ b/config/global/extract.in @@ -52,30 +52,36 @@ config PATCH_BUNDLED config PATCH_LOCAL bool - prompt "Local only" + prompt "Local only (EXPERIMENTAL)" select PATCH_USE_LOCAL + depends on EXPERIMENTAL help - Only apply your local patches. + Only apply your local patches. Many components require patching + to build or work properly; please review the bundled patches and + copy them into your local directory if needed. config PATCH_BUNDLED_LOCAL bool prompt "Bundled, then local" select PATCH_USE_LOCAL help - Apply the patches bundled with crosstool-NG, - then apply your local patches. + Apply the patches bundled with crosstool-NG, then apply your local + patches. config PATCH_LOCAL_BUNDLED bool prompt "Local, then bundled" select PATCH_USE_LOCAL + depends on EXPERIMENTAL help - Apply your local patches, then apply the patches - bundled with crosstool-NG. + Apply your local patches, then apply the patches bundled with + crosstool-NG. Note that the bundled patches cannot be guaranteed + to apply on top of your local patches. config PATCH_NONE bool prompt "None" + depends on EXPERIMENTAL help Don't use any patch at all. |