]> code.ossystems Code Review - openembedded-core.git/commitdiff
sanity.bbclass: warn the user if BBPATH contains wrong entries
authorLaurentiu Palcu <laurentiu.palcu@intel.com>
Wed, 13 Jun 2012 04:01:43 +0000 (07:01 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 13 Jun 2012 10:58:05 +0000 (11:58 +0100)
If BBPATH references the working directory, the user is warned and asked
to fix the problem.

[Yocto #1465]

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sanity.bbclass

index f79fc3f953d36e423b4792ed92a3362072d29927..6ed1e6f4c6b887ec5f00656fc12d6a089c7bd40f 100644 (file)
@@ -387,6 +387,17 @@ def check_sanity(sanity_data):
     if "." in paths or "" in paths:
         messages = messages + "PATH contains '.' or '', which will break the build, please remove this."
 
+    bbpaths = sanity_data.getVar('BBPATH', True).split(":")
+    if "." in bbpaths or "" in bbpaths:
+        # TODO: change the following message to fatal when all BBPATH issues
+        # are fixed
+        bb.warn("BBPATH references the current directory, either through "    \
+                "an empty entry, or a '.'.\n\t This is unsafe and means your "\
+                "layer configuration is adding empty elements to BBPATH.\n\t "\
+                "Please check your layer.conf files and other BBPATH "        \
+                "settings to remove the current working directory "           \
+                "references.");
+
     if sanity_data.getVar('TARGET_ARCH', True) == "arm":
         # This path is no longer user-readable in modern (very recent) Linux
         try: