From: Saul Wold Date: Wed, 5 Feb 2014 18:21:30 +0000 (-0800) Subject: rootfs_deb: Fix whitespace issue X-Git-Tag: 2015-4~3774 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=aec771c113ae4347af7ef98bef8c289e3a5069e2;p=openembedded-core.git rootfs_deb: Fix whitespace issue 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 --- diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass index 8613032f2a..bcfa95003c 100644 --- a/meta/classes/rootfs_deb.bbclass +++ b/meta/classes/rootfs_deb.bbclass @@ -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"