diff options
| author | Hauke Mehrtens | 2022-12-19 23:58:19 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2023-01-08 23:23:41 +0000 |
| commit | a58b29ded7a6d3209aad1d2ff30b5a38d692a45f (patch) | |
| tree | 82bb1283bb191dcdf61349b38e503366ae406846 | |
| parent | 25223b22c86ab07aa174e0285784f591f145a825 (diff) | |
| download | openwrt-a58b29ded7a6d3209aad1d2ff30b5a38d692a45f.tar.gz | |
toolchain/gcc: Fix GCC version check
The version check which sets GCC_VERSION_FILE to the correct value only
worked when the advanced options menu was active and not when it was not
active.
Thank you Tony Butler for the fix.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | toolchain/gcc/common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index 6661b0aa38..ea2e2634b6 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -178,7 +178,7 @@ define Host/SetToolchainInfo endef -ifdef CONFIG_GCC_USE_VERSION_12 +ifeq ($(GCC_MAJOR_VERSION),12) GCC_VERSION_FILE:=gcc/genversion.cc else GCC_VERSION_FILE:=gcc/version.c |