From patchwork Fri Dec 16 16:44:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] license.bbclass: remove bashism Date: Fri, 16 Dec 2011 16:44:07 -0000 From: Elizabeth Flanagan X-Patchwork-Id: 17141 Message-Id: <568afc1a01d9a6674e5109abce6dd5996b6c59e9.1324053729.git.elizabeth.flanagan@intel.com> To: openembedded-core@lists.openembedded.org From: Elizabeth Flanagan Removing a bashism that was dumping errors into rootfs log. Signed-off-by: Elizabeth Flanagan --- meta/classes/license.bbclass | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index dd5d1bc..6e82bd9 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