summaryrefslogtreecommitdiffstats
path: root/meta/classes/buildhistory.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r--meta/classes/buildhistory.bbclass28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 77a3c864c3..054a81fdfc 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -439,20 +439,20 @@ buildhistory_list_files() {
439} 439}
440 440
441buildhistory_list_pkg_files() { 441buildhistory_list_pkg_files() {
442 file_prefix="files-in-" 442 file_prefix="files-in-"
443 443
444 # Create individual files-in-package for each recipe's package 444 # Create individual files-in-package for each recipe's package
445 for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do 445 for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
446 pkgname=$(basename ${pkgdir}) 446 pkgname=$(basename ${pkgdir})
447 outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}" 447 outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}"
448 outfile="${outfolder}/${file_prefix}${pkgname}.txt" 448 outfile="${outfolder}/${file_prefix}${pkgname}.txt"
449 # Make sure the output folder, exist so we can create the files-in-$pkgname.txt file 449 # Make sure the output folder, exist so we can create the files-in-$pkgname.txt file
450 if [ ! -d ${outfolder} ] ; then 450 if [ ! -d ${outfolder} ] ; then
451 bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created" 451 bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created"
452 continue 452 continue
453 fi 453 fi
454 buildhistory_list_files ${pkgdir} ${outfile} 454 buildhistory_list_files ${pkgdir} ${outfile}
455 done 455 done
456} 456}
457 457
458buildhistory_get_imageinfo() { 458buildhistory_get_imageinfo() {