diff options
-rw-r--r-- | meta/classes/buildhistory.bbclass | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 054a81fdfc..3d459c715a 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass | |||
@@ -439,16 +439,14 @@ buildhistory_list_files() { | |||
439 | } | 439 | } |
440 | 440 | ||
441 | buildhistory_list_pkg_files() { | 441 | buildhistory_list_pkg_files() { |
442 | file_prefix="files-in-" | ||
443 | |||
444 | # Create individual files-in-package for each recipe's package | 442 | # Create individual files-in-package for each recipe's package |
445 | for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do | 443 | for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do |
446 | pkgname=$(basename ${pkgdir}) | 444 | pkgname=$(basename $pkgdir) |
447 | outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}" | 445 | outfolder="${BUILDHISTORY_DIR_PACKAGE}/$pkgname" |
448 | outfile="${outfolder}/${file_prefix}${pkgname}.txt" | 446 | outfile="$outfolder/files-in-package.txt" |
449 | # Make sure the output folder, exist so we can create the files-in-$pkgname.txt file | 447 | # Make sure the output folder exists so we can create the file |
450 | if [ ! -d ${outfolder} ] ; then | 448 | if [ ! -d $outfolder ] ; then |
451 | bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created" | 449 | bbdebug 2 "Folder $outfolder does not exist, file $outfile not created" |
452 | continue | 450 | continue |
453 | fi | 451 | fi |
454 | buildhistory_list_files ${pkgdir} ${outfile} | 452 | buildhistory_list_files ${pkgdir} ${outfile} |