summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/buildhistory.bbclass2
-rw-r--r--meta/classes/license.bbclass2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 90cfe4f954..211dcf18b5 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -374,7 +374,7 @@ buildhistory_get_installed() {
374 printf "" > $1/installed-package-sizes.tmp 374 printf "" > $1/installed-package-sizes.tmp
375 cat $pkgcache | while read pkg pkgfile pkgarch 375 cat $pkgcache | while read pkg pkgfile pkgarch
376 do 376 do
377 size=`oe-pkgdata-util read-value ${PKGDATA_DIR} "PKGSIZE" ${pkg}_${pkgarch}` 377 size=`oe-pkgdata-util -p ${PKGDATA_DIR} read-value "PKGSIZE" ${pkg}_${pkgarch}`
378 if [ "$size" != "" ] ; then 378 if [ "$size" != "" ] ; then
379 echo "$size $pkg" >> $1/installed-package-sizes.tmp 379 echo "$size $pkg" >> $1/installed-package-sizes.tmp
380 fi 380 fi
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index 21465d8d00..13c1a0fddf 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -80,7 +80,7 @@ license_create_manifest() {
80 if [ "${COPY_LIC_DIRS}" = "1" ]; then 80 if [ "${COPY_LIC_DIRS}" = "1" ]; then
81 for pkg in ${INSTALLED_PKGS}; do 81 for pkg in ${INSTALLED_PKGS}; do
82 mkdir -p ${IMAGE_ROOTFS}/usr/share/common-licenses/${pkg} 82 mkdir -p ${IMAGE_ROOTFS}/usr/share/common-licenses/${pkg}
83 pkged_pn="$(oe-pkgdata-util lookup-recipe ${PKGDATA_DIR} ${pkg})" 83 pkged_pn="$(oe-pkgdata-util -p ${PKGDATA_DIR} lookup-recipe ${pkg})"
84 for lic in `ls ${LICENSE_DIRECTORY}/${pkged_pn}`; do 84 for lic in `ls ${LICENSE_DIRECTORY}/${pkged_pn}`; do
85 # Really don't need to copy the generics as they're 85 # Really don't need to copy the generics as they're
86 # represented in the manifest and in the actual pkg licenses 86 # represented in the manifest and in the actual pkg licenses