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 /linux | |
parent | a25e4a4c4c01bf55177d2716b6adeb4ce4ac376e (diff) |
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 'linux')
-rw-r--r-- | linux/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/Config.in b/linux/Config.in index f7c533084..52291d8d7 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -79,7 +79,7 @@ config BR2_LINUX_KERNEL_VERSION default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL - default $BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION if BR2_LINUX_KERNEL_CUSTOM_GIT + default BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION if BR2_LINUX_KERNEL_CUSTOM_GIT # # Patch selection |