diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2013-09-02 22:07:53 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-26 19:58:30 +0200 |
commit | fbc2494a41bbdcc12b7242d06852892d2824db4d (patch) | |
tree | 0efa29c11a422835ae844752071f78be03716177 /package/gcc | |
parent | a25e4a4c4c01bf55177d2716b6adeb4ce4ac376e (diff) | |
download | buildroot-fbc2494a41bbdcc12b7242d06852892d2824db4d.tar.gz buildroot-fbc2494a41bbdcc12b7242d06852892d2824db4d.zip |
Remove redundant dollar signs in Config.in files
Some Config.in(.host) files have constructs like:
config FOO_VERSION
string
default "1.0" if FOO_1_0
default "2.0" if FOO_2_0
default $FOO_CUSTOM_VERSION if FOO_CUSTOM
The dollar sign here is not needed and confusing, so can be removed.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index bd2ad8c8f6..41c1213680 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -91,7 +91,7 @@ config BR2_GCC_VERSION default "4.7.3" if BR2_GCC_VERSION_4_7_X default "4.8.2" if BR2_GCC_VERSION_4_8_X default "4.8-arc" if BR2_GCC_VERSION_4_8_ARC - default $BR2_GCC_SNAP_DATE if BR2_GCC_VERSION_SNAP + default BR2_GCC_SNAP_DATE if BR2_GCC_VERSION_SNAP config BR2_EXTRA_GCC_CONFIG_OPTIONS string "Additional gcc options" |