summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorElizabeth Flanagan <elizabeth.flanagan@intel.com>2011-12-16 08:44:07 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-16 16:50:39 +0000
commit3e05acab1c119a3b2a4703ea8729cc768935d36e (patch)
tree15688f5d539d4b436d2c7aa11c42ceaa4f6265bd /meta/classes
parent70643614cccaa3038c4487ef23a5495aa23346b3 (diff)
downloadopenembedded-core-contrib-3e05acab1c119a3b2a4703ea8729cc768935d36e.tar.gz
license.bbclass: remove bashism
Removing a bashism that was dumping errors into rootfs log. Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/license.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index dd5d1bce0e..6e82bd94ae 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -120,7 +120,7 @@ license_create_manifest() {
# Really don't need to copy the generics as they're
# represented in the manifest and in the actual pkg licenses
# Doing so would make your image quite a bit larger
- if [ ! ${lic} == "generic_*" ]; then
+ if [ ! ${lic} = "generic_*" ]; then
cp ${LICENSE_DIRECTORY}/${pkged_pn}/${lic} ${IMAGE_ROOTFS}/usr/share/common-licenses/${pkg}/${lic}
fi
done