All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] oe-layertool-setup.sh: avoid == bashism
@ 2014-01-31  0:47 Denys Dmytriyenko
  2014-01-31 23:11 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2014-01-31  0:47 UTC (permalink / raw)
  To: meta-arago

From: Denys Dmytriyenko <denys@ti.com>

Use POSIX "=" for comparison instead of bash "=="

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 oe-layertool-setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh
index ab66ef3..91fb71a 100755
--- a/oe-layertool-setup.sh
+++ b/oe-layertool-setup.sh
@@ -742,7 +742,7 @@ EOM
     fi
 
     # If command line option was not set use the old dldir
-    if [ "x$dldir" == "x" ]
+    if [ "x$dldir" = "x" ]
     then
         dldir=$old_dldir
     fi
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] oe-layertool-setup.sh: avoid == bashism
  2014-01-31  0:47 [PATCH] oe-layertool-setup.sh: avoid == bashism Denys Dmytriyenko
@ 2014-01-31 23:11 ` Denys Dmytriyenko
  2014-01-31 23:27   ` Maupin, Chase
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2014-01-31 23:11 UTC (permalink / raw)
  To: meta-arago

Ping. Any objections?


On Thu, Jan 30, 2014 at 07:47:58PM -0500, Denys Dmytriyenko wrote:
> From: Denys Dmytriyenko <denys@ti.com>
> 
> Use POSIX "=" for comparison instead of bash "=="
> 
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
>  oe-layertool-setup.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh
> index ab66ef3..91fb71a 100755
> --- a/oe-layertool-setup.sh
> +++ b/oe-layertool-setup.sh
> @@ -742,7 +742,7 @@ EOM
>      fi
>  
>      # If command line option was not set use the old dldir
> -    if [ "x$dldir" == "x" ]
> +    if [ "x$dldir" = "x" ]
>      then
>          dldir=$old_dldir
>      fi
> -- 
> 1.8.3.2
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] oe-layertool-setup.sh: avoid == bashism
  2014-01-31 23:11 ` Denys Dmytriyenko
@ 2014-01-31 23:27   ` Maupin, Chase
  0 siblings, 0 replies; 3+ messages in thread
From: Maupin, Chase @ 2014-01-31 23:27 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

Sorry, fine by me
> On Jan 31, 2014, at 5:11 PM, "Dmytriyenko, Denys" <denys@ti.com> wrote:
> 
> Ping. Any objections?
> 
> 
>> On Thu, Jan 30, 2014 at 07:47:58PM -0500, Denys Dmytriyenko wrote:
>> From: Denys Dmytriyenko <denys@ti.com>
>> 
>> Use POSIX "=" for comparison instead of bash "=="
>> 
>> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
>> ---
>> oe-layertool-setup.sh | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh
>> index ab66ef3..91fb71a 100755
>> --- a/oe-layertool-setup.sh
>> +++ b/oe-layertool-setup.sh
>> @@ -742,7 +742,7 @@ EOM
>>     fi
>> 
>>     # If command line option was not set use the old dldir
>> -    if [ "x$dldir" == "x" ]
>> +    if [ "x$dldir" = "x" ]
>>     then
>>         dldir=$old_dldir
>>     fi
>> -- 
>> 1.8.3.2
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-01-31 23:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-31  0:47 [PATCH] oe-layertool-setup.sh: avoid == bashism Denys Dmytriyenko
2014-01-31 23:11 ` Denys Dmytriyenko
2014-01-31 23:27   ` Maupin, Chase

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.