protobuf: replace spaces with tabs in recipe

The recipe uses 4 spaces instead of tabs when indenting.  The recipe
style guidelines indicate that tabs should be used instead.  This
simple fix replaces the spaces with tabs where appropriate in the
recipe file.

Signed-off-by: Keith Holman <Keith.Holman@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
Keith Holman 2014-08-20 16:46:09 -04:00 committed by Bruce Ashfield
parent 7b424fa19e
commit 124d4185c4

View File

@ -19,16 +19,16 @@ EXTRA_OECONF += " --with-protoc=echo"
inherit autotools setuptools inherit autotools setuptools
do_compile() { do_compile() {
# Compile protoc compiler # Compile protoc compiler
base_do_compile base_do_compile
} }
do_install() { do_install() {
# Install protoc compiler # Install protoc compiler
autotools_do_install autotools_do_install
# Install header files # Install header files
cd "${PYTHON_SRC_DIR}" cd "${PYTHON_SRC_DIR}"
distutils_do_install distutils_do_install
} }
BBCLASSEXTEND = "native nativesdk" BBCLASSEXTEND = "native nativesdk"