]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/package_rpm.bbclass: Enhance diagnostic messages
authorMark Hatle <mark.hatle@windriver.com>
Mon, 20 Jun 2011 15:59:58 +0000 (10:59 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 Jun 2011 11:01:55 +0000 (12:01 +0100)
We clearly state now if we are:
  * Skipping an empty package
  * Creating a (full) package
  * Creating an empty package

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
meta/classes/package_rpm.bbclass

index d8e86c5cd68b8284db099dd68d9496947e2b8317..9a854f383423c95d89c4d5be5b09b5e03ff94b27 100644 (file)
@@ -486,7 +486,10 @@ python write_specfile () {
                                spec_files_top.append('%files')
                                spec_files_top.append('%defattr(-,-,-,-)')
                                if file_list:
+                                       bb.note("Creating RPM package for %s" % splitname)
                                        spec_files_top.extend(file_list)
+                               else:
+                                       bb.note("Creating EMPTY RPM Package for %s" % splitname)
                                spec_files_top.append('')
 
                        bb.utils.unlockfile(lf)
@@ -569,11 +572,13 @@ python write_specfile () {
                if not file_list and bb.data.getVar('ALLOW_EMPTY', localdata) != "1":
                        bb.note("Not creating empty RPM package for %s" % splitname)
                else:
-                       bb.note("Creating RPM package for %s" % splitname)
                        spec_files_bottom.append('%%files -n %s' % splitname)
                        spec_files_bottom.append('%defattr(-,-,-,-)')
                        if file_list:
+                               bb.note("Creating RPM package for %s" % splitname)
                                spec_files_bottom.extend(file_list)
+                       else:
+                               bb.note("Creating EMPTY RPM Package for %s" % splitname)
                        spec_files_bottom.append('')
 
                del localdata