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 /boot/barebox | |
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 'boot/barebox')
-rw-r--r-- | boot/barebox/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/barebox/Config.in b/boot/barebox/Config.in index eb2b0b22d..a409acaca 100644 --- a/boot/barebox/Config.in +++ b/boot/barebox/Config.in @@ -41,9 +41,9 @@ endif config BR2_TARGET_BAREBOX_VERSION string default "2013.10.0" if BR2_TARGET_BAREBOX_LATEST_VERSION - default $BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION + default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL - default $BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT + default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT config BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR string "custom patch dir" |