diff options
author | Chris Packham <judge.packham@gmail.com> | 2024-01-30 12:38:13 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-03-01 14:45:27 +1300 |
commit | e7a88ff52d92b46238d2709ef5c8d837bcf767b5 (patch) | |
tree | 369bccaae079edcb9f0befc50234e9b12e1c45d5 /scripts/build | |
parent | aa6a6c3a34b3e2c5b094855e8d2b57a698457561 (diff) | |
download | crosstool-ng-e7a88ff52d92b46238d2709ef5c8d837bcf767b5.tar.gz crosstool-ng-e7a88ff52d92b46238d2709ef5c8d837bcf767b5.tar.bz2 crosstool-ng-e7a88ff52d92b46238d2709ef5c8d837bcf767b5.zip |
Revert "binutils: Disable glob for better portability"
This reverts commit 57f59092852dff18fbda68fdbf23f850ad182c40. This was
originally added so that a toolchain could be built on a newer system but
run on an older one. With the benefit of hindsight that is probably the
wrong approach. The best way of achieving that goal would be to use
docker/podman container to provide an environment that is the same as
the oldest supported system and build inside that. The resulting
toolchain should be compatible with the old system and the new one.
Closes #2094
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts/build')
-rw-r--r-- | scripts/build/binutils/binutils.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/build/binutils/binutils.sh b/scripts/build/binutils/binutils.sh index e8fdbbcc..4dc33221 100644 --- a/scripts/build/binutils/binutils.sh +++ b/scripts/build/binutils/binutils.sh @@ -182,10 +182,6 @@ do_binutils_backend() { extra_config+=("--without-zstd") fi - # Disable usage of glob for higher compatibility. - # Not strictly needed for anything but GDB anyways. - export ac_cv_func_glob=no - CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'" CT_DoExecLog CFG \ |