diff options
author | Keith Holman <Keith.Holman@windriver.com> | 2014-08-20 16:46:09 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-08-22 14:42:55 -0400 |
commit | 124d4185c471c72dd4c9a03210e3f3af0eb68998 (patch) | |
tree | c48aced9ceba85ffa3be770f17833b2c83244450 | |
parent | 7b424fa19e7a8d3aaac9e7535ee113efc4931765 (diff) | |
download | meta-virtualization-124d4185c471c72dd4c9a03210e3f3af0eb68998.tar.gz |
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>
-rw-r--r-- | recipes-containers/criu/protobuf_2.5.0.bb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/recipes-containers/criu/protobuf_2.5.0.bb b/recipes-containers/criu/protobuf_2.5.0.bb index a9a26d88..5cf6cc92 100644 --- a/recipes-containers/criu/protobuf_2.5.0.bb +++ b/recipes-containers/criu/protobuf_2.5.0.bb | |||
@@ -19,16 +19,16 @@ EXTRA_OECONF += " --with-protoc=echo" | |||
19 | inherit autotools setuptools | 19 | inherit autotools setuptools |
20 | 20 | ||
21 | do_compile() { | 21 | do_compile() { |
22 | # Compile protoc compiler | 22 | # Compile protoc compiler |
23 | base_do_compile | 23 | base_do_compile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
27 | # Install protoc compiler | 27 | # Install protoc compiler |
28 | autotools_do_install | 28 | autotools_do_install |
29 | # Install header files | 29 | # Install header files |
30 | cd "${PYTHON_SRC_DIR}" | 30 | cd "${PYTHON_SRC_DIR}" |
31 | distutils_do_install | 31 | distutils_do_install |
32 | } | 32 | } |
33 | 33 | ||
34 | BBCLASSEXTEND = "native nativesdk" | 34 | BBCLASSEXTEND = "native nativesdk" |