diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-06-02 10:00:18 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-06-02 10:00:18 -0700 |
commit | 98a33a63b786c97a276d3a5d4c6fa738b92f4e0b (patch) | |
tree | ec4f21a84212d9dd6c746a50decff6464ecfa61e /config/cc | |
parent | 935ee41fad81fd906bf6b2a0efc8c5a371088312 (diff) | |
download | crosstool-ng-98a33a63b786c97a276d3a5d4c6fa738b92f4e0b.tar.gz crosstool-ng-98a33a63b786c97a276d3a5d4c6fa738b92f4e0b.tar.bz2 crosstool-ng-98a33a63b786c97a276d3a5d4c6fa738b92f4e0b.zip |
config/gcc: Fix gcc 5.1.0 version knob
This change makes the 5.1.0 version knob consistant with previous gcc
versions.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'config/cc')
-rw-r--r-- | config/cc/gcc.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 2d2d9ccb..47810607 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -37,7 +37,7 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW -config CC_GCC_V_5_1 +config CC_GCC_V_5_1_0 bool prompt "5.1.0" select CC_GCC_5_1 @@ -182,7 +182,6 @@ config CC_GCC_V_4_5_0 prompt "4.5.0" select CC_GCC_4_5 - config CC_GCC_V_linaro_4_4 bool prompt "linaro-4.4-2011.02-0" @@ -532,7 +531,7 @@ config CC_GCC_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW - default "5.1.0" if CC_GCC_V_5_1 + default "5.1.0" if CC_GCC_V_5_1_0 default "linaro-4.9-2015.03" if CC_GCC_V_linaro_4_9 default "4.9.2" if CC_GCC_V_4_9_2 default "4.9.1" if CC_GCC_V_4_9_1 |