From: Marcin Juszkiewicz Date: Tue, 1 Apr 2008 09:37:34 +0000 (+0000) Subject: cpan.bbclass: remove bashisms X-Git-Tag: 2011-1~9298 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=40eb81cc21a3529d996c65c5869bebb3605d2d97;p=openembedded-core.git cpan.bbclass: remove bashisms git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4153 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- diff --git a/meta/classes/cpan.bbclass b/meta/classes/cpan.bbclass index 506d4c4c81..ca5303d97f 100644 --- a/meta/classes/cpan.bbclass +++ b/meta/classes/cpan.bbclass @@ -50,13 +50,13 @@ cpan_do_compile () { } cpan_do_install () { - if [ ${@is_target(d)} == "yes" ]; then + if [ ${@is_target(d)} = "yes" ]; then oe_runmake install_vendor fi } cpan_do_stage () { - if [ ${@is_target(d)} == "no" ]; then + if [ ${@is_target(d)} = "no" ]; then oe_runmake install_vendor fi }