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

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.