diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2016-12-09 08:47:45 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-06-07 20:37:35 +0200 |
commit | d2bbaffe405dae3c9c4138534ae4ebdecc48f3ea (patch) | |
tree | a4040de70a354051768dd6bbc9f8438baaffcdcd | |
parent | f0c7be4e6344133ee2aaa2bb40e21ca28108be11 (diff) |
abuild: Remove space before tab
Fix up commit 26174c97 (abuild: Build saved config files)
unintentionally adding a space before a tabulator.
Change-Id: Ic51dee6ed9d640335c2bde5bd5dfad3691c505e0
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/17778
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 336cd51822..6473fcf69a 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -400,7 +400,7 @@ function build_config return fi - export HOSTCC='gcc' + export HOSTCC='gcc' if [ "$chromeos" = true ] && [ "$(grep -c "^[[:space:]]*select[[:space:]]*MAINBOARD_HAS_CHROMEOS\>" "${ROOT}/src/mainboard/${board_srcdir}/Kconfig")" -eq 0 ]; then echo "${BUILD_NAME} doesn't support Chrome OS, skipping." |