diff options
author | Yuriy Kolerov <ykolerov@synopsys.com> | 2023-05-09 12:30:15 +0400 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-05-19 15:53:17 +1200 |
commit | 65e5960a39031504b0b1d189e634d998aa5fbb97 (patch) | |
tree | 5071bfb273b98626217c776869362c82faed3d0c /scripts | |
parent | 694c08a6ca4942124941722f3bb790d428b3a146 (diff) | |
download | crosstool-ng-65e5960a39031504b0b1d189e634d998aa5fbb97.tar.gz crosstool-ng-65e5960a39031504b0b1d189e634d998aa5fbb97.tar.bz2 crosstool-ng-65e5960a39031504b0b1d189e634d998aa5fbb97.zip |
gdb: Fix extra config variable name for native GDB
Variable native_extra_config must be used for configuration
options instead for extra_config for native GDB.
Signed-off-by: Yuriy Kolerov <ykolerov@synopsys.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 2fa94981..11d73b9e 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -167,8 +167,8 @@ do_debug_gdb_build() # version of expat and will attempt to link that, despite the -static flag. # The link will fail, and configure will abort with "expat missing or unusable" # message. - extra_config+=("--with-expat") - extra_config+=("--without-libexpat-prefix") + native_extra_config+=("--with-expat") + native_extra_config+=("--without-libexpat-prefix") do_gdb_backend \ buildtype=native \ |