diff options
author | Muhammad Shakeel <muhammad_shakeel@mentor.com> | 2013-08-13 11:52:37 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-16 11:14:31 +0100 |
commit | e9d02d53f6b6d19619d34c305d04ec1b8207ef74 (patch) | |
tree | 8851c1e2e54a180de4cea356ddb59099fbeaab24 /meta/recipes-extended | |
parent | 04a9cff9e828135f512f8aba0739cd16fc518267 (diff) | |
download | poky-e9d02d53f6b6d19619d34c305d04ec1b8207ef74.tar.gz |
rpcbind: Replace spaces with tabs in shell function
As per OE-Core convention, indentation should be TAB for shell.
(From OE-Core rev: a92376f2daf10baf45d99a3de9502b52cbce8b7e)
Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind_0.2.0.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind_0.2.0.bb b/meta/recipes-extended/rpcbind/rpcbind_0.2.0.bb index f4a03670e7..be2897cdb4 100644 --- a/meta/recipes-extended/rpcbind/rpcbind_0.2.0.bb +++ b/meta/recipes-extended/rpcbind/rpcbind_0.2.0.bb | |||
@@ -36,11 +36,11 @@ INITSCRIPT_NAME = "rpcbind" | |||
36 | INITSCRIPT_PARAMS = "start 43 S . start 32 0 6 . stop 81 1 ." | 36 | INITSCRIPT_PARAMS = "start 43 S . start 32 0 6 . stop 81 1 ." |
37 | 37 | ||
38 | do_install_append () { | 38 | do_install_append () { |
39 | mv ${D}${bindir} ${D}${sbindir} | 39 | mv ${D}${bindir} ${D}${sbindir} |
40 | 40 | ||
41 | install -d ${D}${sysconfdir}/init.d | 41 | install -d ${D}${sysconfdir}/init.d |
42 | sed -e 's,/etc/,${sysconfdir}/,g' \ | 42 | sed -e 's,/etc/,${sysconfdir}/,g' \ |
43 | -e 's,/sbin/,${sbindir}/,g' \ | 43 | -e 's,/sbin/,${sbindir}/,g' \ |
44 | ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind | 44 | ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind |
45 | chmod 0755 ${D}${sysconfdir}/init.d/rpcbind | 45 | chmod 0755 ${D}${sysconfdir}/init.d/rpcbind |
46 | } | 46 | } |