diff options
author | demin.han <demin.han@starfivetech.com> | 2024-10-14 15:31:02 +0800 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-10-16 14:54:04 +1300 |
commit | 6d1d61cbcacc7ce4622ef024490e0cb56881614b (patch) | |
tree | 3ac709c3d7016b909cd4831b1d72c65e0a32874f | |
parent | 8c1cdb94c1bd8a98337d6cfb5f94b4fef911a785 (diff) | |
download | crosstool-ng-6d1d61cbcacc7ce4622ef024490e0cb56881614b.tar.gz crosstool-ng-6d1d61cbcacc7ce4622ef024490e0cb56881614b.tar.bz2 crosstool-ng-6d1d61cbcacc7ce4622ef024490e0cb56881614b.zip |
gdb: fix GDB_CC_LD_LIBTOOL reference
GDB_CC_LD_LIBTOOL doesn't exist and so else branch always taken.
We should use CT_GDB_CC_LD_LIBTOOL.
Signed-off-by: demin.han <demin.han@starfivetech.com>
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 8f9c51e5..ce77260a 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -347,7 +347,7 @@ do_gdb_backend() "${extra_config[@]}" \ if [ "${static}" = "y" ]; then - if [ "${GDB_CC_LD_LIBTOOL}" = "y" ]; then + if [ "${CT_GDB_CC_LD_LIBTOOL}" = "y" ]; then extra_make_flags+=("LDFLAGS=${ldflags} -all-static") else extra_make_flags+=("LDFLAGS=${ldflags} -static") |