]> code.ossystems Code Review - openembedded-core.git/commitdiff
rootfs_deb: Fix whitespace issue
authorSaul Wold <sgw@linux.intel.com>
Wed, 5 Feb 2014 18:21:30 +0000 (10:21 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 8 Feb 2014 21:00:31 +0000 (21:00 +0000)
Fixing the following warning:
WARNING: Variable rootfs_deb_bad_recommendations contains tabs, please remove these (/srv/ssd/sgw/poky/meta/recipes-extended/images/core-image-lsb-dev.bb)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/rootfs_deb.bbclass

index 8613032f2aaa574d4e6ffb8633791351ee27f55c..bcfa95003cd775ec480e12afe82bc652beff6c68 100644 (file)
@@ -13,7 +13,7 @@ do_rootfs[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock"
 
 python rootfs_deb_bad_recommendations() {
     if d.getVar("BAD_RECOMMENDATIONS", True):
-       bb.warn("Debian package install does not support BAD_RECOMMENDATIONS")
+        bb.warn("Debian package install does not support BAD_RECOMMENDATIONS")
 }
 do_rootfs[prefuncs] += "rootfs_deb_bad_recommendations"