[oe-commits] Mark Hatle : package_rpm.bbclass: Fix no_recommendations and package_exclude

git at git.openembedded.org git at git.openembedded.org
Fri Sep 6 21:59:58 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: a04f4fe8db425f0ea87a67b5c72d61816b8d53e2
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a04f4fe8db425f0ea87a67b5c72d61816b8d53e2

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Thu Sep  5 18:48:42 2013 -0500

package_rpm.bbclass: Fix no_recommendations and package_exclude

When the code was refactored to address review comments, the wrong version
was sent to the community.  Replace the $1 with ${target_rootfs}

Fix identified by: Yue Tao <yue.tao at windriver.com>

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/package_rpm.bbclass |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
index cc77c5e..8ab42c4 100644
--- a/meta/classes/package_rpm.bbclass
+++ b/meta/classes/package_rpm.bbclass
@@ -360,10 +360,10 @@ EOF
 		package_write_smart_config ${target_rootfs}
 		# Do the following configurations here, to avoid them being saved for field upgrade
 		if [ "x${NO_RECOMMENDATIONS}" = "x1" ]; then
-			smart --data-dir=$1/var/lib/smart config --set ignore-all-recommends=1
+			smart --data-dir=${target_rootfs}/var/lib/smart config --set ignore-all-recommends=1
 		fi
 		for i in ${PACKAGE_EXCLUDE}; do
-			smart --data-dir=$1/var/lib/smart flag --set exclude-packages $i
+			smart --data-dir=${target_rootfs}/var/lib/smart flag --set exclude-packages $i
 		done
 
 		# Optional debugging



More information about the Openembedded-commits mailing list