-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed up weird permissions in the esp32 toolchain tar ball. Patched configure to accept bash 5 as being >= 3.1.
- Loading branch information
Showing
3 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- configure.orig 2019-07-31 16:33:42.340434597 +1000 | ||
+++ configure.ac 2019-07-31 16:35:51.013963106 +1000 | ||
@@ -151,7 +151,7 @@ | ||
[GNU bash >= 3.1], | ||
[bash], | ||
[bash], | ||
- [^GNU bash, version (3\.[1-9]|4)]) | ||
+ [^GNU bash, version (3\.[1-9]|4|5)]) | ||
|
||
# We need a awk that *is* GNU awk | ||
CTNG_PROG_VERSION_REQ_STRICT([AWK], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- crosstool-NG/configure.orig 2019-07-31 17:38:30.662644555 +1000 | ||
+++ crosstool-NG/configure.ac 2019-07-31 17:38:43.786800527 +1000 | ||
@@ -190,7 +190,7 @@ | ||
AC_CACHE_CHECK([for bash >= 3.1], [ac_cv_path__BASH], | ||
[AC_PATH_PROGS_FEATURE_CHECK([_BASH], [bash], | ||
[[_BASH_ver=$($ac_path__BASH --version 2>&1 \ | ||
- |$EGREP '^GNU bash, version (3\.[1-9]|4)') | ||
+ |$EGREP '^GNU bash, version (3\.[1-9]|4|5)') | ||
test -n "$_BASH_ver" && ac_cv_path__BASH=$ac_path__BASH ac_path__BASH_found=:]], | ||
[AC_MSG_RESULT([no]) | ||
AC_MSG_ERROR([could not find bash >= 3.1])])]) |