From: Denys Dmytriyenko <[email protected]> Use POSIX "=" for comparison instead of bash "=="
Signed-off-by: Denys Dmytriyenko <[email protected]> --- 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 [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
