diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-20 16:52:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-21 12:15:30 +0100 |
commit | 48619958d53cbec888a0a6806c5e494291e9e227 (patch) | |
tree | 0618ff69a32566be156b0f7e5d7a06cce350e033 /meta/classes/package_ipk.bbclass | |
parent | 7c40daab587306da25c8d8f566392ee1f57bbef4 (diff) | |
download | poky-48619958d53cbec888a0a6806c5e494291e9e227.tar.gz |
meta/classes: Various python whitespace fixes
It was pointed out we have a number of weird indentations in the python functions.
This patch cleans up 3, 7 and other weird indentations for the core bbclass files.
It also fixes some wierd (odd) shell function indentation which my searches picked up.
(From OE-Core rev: 8385d6d74624000d68814f4e3266d47bc8885942)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index a297a1f9d4..e94586e6ca 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -172,23 +172,23 @@ package_install_internal_ipk() { | |||
172 | } | 172 | } |
173 | 173 | ||
174 | ipk_log_check() { | 174 | ipk_log_check() { |
175 | target="$1" | 175 | target="$1" |
176 | lf_path="$2" | 176 | lf_path="$2" |
177 | 177 | ||
178 | lf_txt="`cat $lf_path`" | 178 | lf_txt="`cat $lf_path`" |
179 | for keyword_die in "exit 1" "Collected errors" ERR Fail | 179 | for keyword_die in "exit 1" "Collected errors" ERR Fail |
180 | do | 180 | do |
181 | if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1 | 181 | if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1 |
182 | then | 182 | then |
183 | echo "log_check: There were error messages in the logfile" | 183 | echo "log_check: There were error messages in the logfile" |
184 | echo -e "log_check: Matched keyword: [$keyword_die]\n" | 184 | echo -e "log_check: Matched keyword: [$keyword_die]\n" |
185 | echo "$lf_txt" | grep -v log_check | grep -C 5 -i "$keyword_die" | 185 | echo "$lf_txt" | grep -v log_check | grep -C 5 -i "$keyword_die" |
186 | echo "" | 186 | echo "" |
187 | do_exit=1 | 187 | do_exit=1 |
188 | fi | 188 | fi |
189 | done | 189 | done |
190 | test "$do_exit" = 1 && exit 1 | 190 | test "$do_exit" = 1 && exit 1 |
191 | true | 191 | true |
192 | } | 192 | } |
193 | 193 | ||
194 | # | 194 | # |