summaryrefslogtreecommitdiffstats
path: root/meta/classes/buildhistory.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-08-20 11:55:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-30 12:36:10 +0100
commit5d34d3257acd0616870eae963b17df27a434cb71 (patch)
tree12cbb8e1d7ce75d5cf29f8fd06c022c79366dfc7 /meta/classes/buildhistory.bbclass
parentec412d5c7648f378fb5ba5e9845dd1c40265fbdd (diff)
downloadpoky-5d34d3257acd0616870eae963b17df27a434cb71.tar.gz
classes/buildhistory: indent recently added function consistently
Shell functions use tabs in this file. (From OE-Core rev: 14eba06baacca25213e35afa7bfd126fc1f5586a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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() {