summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/package.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index cd92beb394..09230b5bb9 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1146,7 +1146,8 @@ python populate_packages () {
1146 else: 1146 else:
1147 for f in unshipped: 1147 for f in unshipped:
1148 msg = msg + "\n " + f 1148 msg = msg + "\n " + f
1149 msg = msg + "\nPlease set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install." 1149 msg = msg + "\nPlease set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.\n"
1150 msg = msg + "%s: %d installed and not shipped files." % (pn, len(unshipped))
1150 package_qa_handle_error("installed-vs-shipped", msg, d) 1151 package_qa_handle_error("installed-vs-shipped", msg, d)
1151} 1152}
1152populate_packages[dirs] = "${D}" 1153populate_packages[dirs] = "${D}"