aboutsummaryrefslogtreecommitdiffstats
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:34:37 +0100
commit14eba06baacca25213e35afa7bfd126fc1f5586a (patch)
tree5950d83f00d9697d014561d96fc1595d5910c03a /meta/classes/buildhistory.bbclass
parentd503122646b1b148113a4be31b7e88723459dae6 (diff)
downloadopenembedded-core-contrib-14eba06baacca25213e35afa7bfd126fc1f5586a.tar.gz
classes/buildhistory: indent recently added function consistently
Shell functions use tabs in this file. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
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() {
}
buildhistory_list_pkg_files() {
- file_prefix="files-in-"
-
- # Create individual files-in-package for each recipe's package
- for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
- pkgname=$(basename ${pkgdir})
- outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}"
- outfile="${outfolder}/${file_prefix}${pkgname}.txt"
- # Make sure the output folder, exist so we can create the files-in-$pkgname.txt file
- if [ ! -d ${outfolder} ] ; then
- bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created"
- continue
- fi
- buildhistory_list_files ${pkgdir} ${outfile}
- done
+ file_prefix="files-in-"
+
+ # Create individual files-in-package for each recipe's package
+ for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
+ pkgname=$(basename ${pkgdir})
+ outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}"
+ outfile="${outfolder}/${file_prefix}${pkgname}.txt"
+ # Make sure the output folder, exist so we can create the files-in-$pkgname.txt file
+ if [ ! -d ${outfolder} ] ; then
+ bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created"
+ continue
+ fi
+ buildhistory_list_files ${pkgdir} ${outfile}
+ done
}
buildhistory_get_imageinfo() {