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:12 +0100 |
commit | a92376f2daf10baf45d99a3de9502b52cbce8b7e (patch) | |
tree | 985cfda2d460a1f6e15e16dc1d3d088549686a43 /meta/recipes-extended/rpcbind | |
parent | d73a0d00554cc197d2eb7e95432252af267d7bca (diff) | |
download | openembedded-core-a92376f2daf10baf45d99a3de9502b52cbce8b7e.tar.gz openembedded-core-a92376f2daf10baf45d99a3de9502b52cbce8b7e.tar.bz2 openembedded-core-a92376f2daf10baf45d99a3de9502b52cbce8b7e.zip |
rpcbind: Replace spaces with tabs in shell function
As per OE-Core convention, indentation should be TAB for shell.
Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/rpcbind')
-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" INITSCRIPT_PARAMS = "start 43 S . start 32 0 6 . stop 81 1 ." do_install_append () { - mv ${D}${bindir} ${D}${sbindir} + mv ${D}${bindir} ${D}${sbindir} - install -d ${D}${sysconfdir}/init.d - sed -e 's,/etc/,${sysconfdir}/,g' \ - -e 's,/sbin/,${sbindir}/,g' \ - ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind - chmod 0755 ${D}${sysconfdir}/init.d/rpcbind + install -d ${D}${sysconfdir}/init.d + sed -e 's,/etc/,${sysconfdir}/,g' \ + -e 's,/sbin/,${sbindir}/,g' \ + ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind + chmod 0755 ${D}${sysconfdir}/init.d/rpcbind } |