]> code.ossystems Code Review - openembedded-core.git/commitdiff
cpan.bbclass: remove bashisms
authorMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 1 Apr 2008 09:37:34 +0000 (09:37 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 1 Apr 2008 09:37:34 +0000 (09:37 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4153 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/cpan.bbclass

index 506d4c4c81d0c2b1076a96f8a82b489b78595db7..ca5303d97f47cc97a13cb1618e180e889a82b2cf 100644 (file)
@@ -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
 }