diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2018-12-05 18:13:48 -0800 |
---|---|---|
committer | Ross Burton <ross.burton@intel.com> | 2018-12-06 11:47:15 +0000 |
commit | aabc30f3bd03f97326fb8596910b94639fea7575 (patch) | |
tree | 9cc18b1bcb655a1663fe9b5c083dec1e1c608870 | |
parent | 8975a6d34736cd98788a8393c3fad92c500428d9 (diff) | |
download | meta-gplv2-aabc30f3bd03f97326fb8596910b94639fea7575.tar.gz |
coreutils: Remove tab indentations in python codeyocto-2.6.4yocto-2.6.3yocto-2.6.2yocto-2.6.1thud-20.0.4thud-20.0.3thud-20.0.2thud-20.0.12.7_M32.7_M22.7_M1thud
Use 4 spaces to replace a tab.
Fixed:
python should use 4 spaces indentation, but found tabs in coreutils_6.9.bb, line 95
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | recipes-core/coreutils/coreutils_6.9.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-core/coreutils/coreutils_6.9.bb b/recipes-core/coreutils/coreutils_6.9.bb index 906bc4a..080100d 100644 --- a/recipes-core/coreutils/coreutils_6.9.bb +++ b/recipes-core/coreutils/coreutils_6.9.bb | |||
@@ -92,9 +92,9 @@ ALTERNATIVE_LINK_NAME[lbracket] = "${bindir}/[" | |||
92 | ALTERNATIVE_TARGET[lbracket] = "${bindir}/lbracket.${BPN}" | 92 | ALTERNATIVE_TARGET[lbracket] = "${bindir}/lbracket.${BPN}" |
93 | 93 | ||
94 | python __anonymous() { | 94 | python __anonymous() { |
95 | for prog in d.getVar('base_bindir_progs').split(): | 95 | for prog in d.getVar('base_bindir_progs').split(): |
96 | d.setVarFlag('ALTERNATIVE_LINK_NAME', prog, '%s/%s' % (d.getVar('base_bindir'), prog)) | 96 | d.setVarFlag('ALTERNATIVE_LINK_NAME', prog, '%s/%s' % (d.getVar('base_bindir'), prog)) |
97 | 97 | ||
98 | for prog in d.getVar('sbindir_progs').split(): | 98 | for prog in d.getVar('sbindir_progs').split(): |
99 | d.setVarFlag('ALTERNATIVE_LINK_NAME', prog, '%s/%s' % (d.getVar('sbindir'), prog)) | 99 | d.setVarFlag('ALTERNATIVE_LINK_NAME', prog, '%s/%s' % (d.getVar('sbindir'), prog)) |
100 | } | 100 | } |