diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-02-05 10:21:30 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-09 09:40:01 +0000 |
commit | a1240a563bce90cb1076c508828835850c857e65 (patch) | |
tree | a022286e49572a0bef92b4917cbeb8e64ea4ea89 | |
parent | 9776dbd401d86900573ac2d2be3b10641a5f5e06 (diff) | |
download | poky-a1240a563bce90cb1076c508828835850c857e65.tar.gz |
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)
(From OE-Core rev: aec771c113ae4347af7ef98bef8c289e3a5069e2)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/rootfs_deb.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
13 | 13 | ||
14 | python rootfs_deb_bad_recommendations() { | 14 | python rootfs_deb_bad_recommendations() { |
15 | if d.getVar("BAD_RECOMMENDATIONS", True): | 15 | if d.getVar("BAD_RECOMMENDATIONS", True): |
16 | bb.warn("Debian package install does not support BAD_RECOMMENDATIONS") | 16 | bb.warn("Debian package install does not support BAD_RECOMMENDATIONS") |
17 | } | 17 | } |
18 | do_rootfs[prefuncs] += "rootfs_deb_bad_recommendations" | 18 | do_rootfs[prefuncs] += "rootfs_deb_bad_recommendations" |
19 | 19 | ||