summaryrefslogtreecommitdiffstats
path: root/meta/classes/license.bbclass
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:46 +0000
commitee2af267b774565f27720f00770e1053a5ba415f (patch)
treecacec7287f95911168836f536f86b1e55f12bcae /meta/classes/license.bbclass
parentcdba3979b9c59a653f9c0e6e779d11c5ff58bb17 (diff)
downloadpoky-ee2af267b774565f27720f00770e1053a5ba415f.tar.gz
license.bbclass: remove bashism
Removing a bashism that was dumping errors into rootfs log. (From OE-Core rev: 3e05acab1c119a3b2a4703ea8729cc768935d36e) Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/license.bbclass')
-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() {
120 # Really don't need to copy the generics as they're 120 # Really don't need to copy the generics as they're
121 # represented in the manifest and in the actual pkg licenses 121 # represented in the manifest and in the actual pkg licenses
122 # Doing so would make your image quite a bit larger 122 # Doing so would make your image quite a bit larger
123 if [ ! ${lic} == "generic_*" ]; then 123 if [ ! ${lic} = "generic_*" ]; then
124 cp ${LICENSE_DIRECTORY}/${pkged_pn}/${lic} ${IMAGE_ROOTFS}/usr/share/common-licenses/${pkg}/${lic} 124 cp ${LICENSE_DIRECTORY}/${pkged_pn}/${lic} ${IMAGE_ROOTFS}/usr/share/common-licenses/${pkg}/${lic}
125 fi 125 fi
126 done 126 done