From: Saul Wold Date: Tue, 10 Feb 2015 17:57:44 +0000 (-0800) Subject: lib/oe/lsb.py: Fix up for dash X-Git-Tag: 2015-4~443 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=105280d58f7be50e5aee6a33ef1aa89dd6485cbf;p=openembedded-core.git lib/oe/lsb.py: Fix up for dash Remove the leading -e when using dash which does not use -e with echo Signed-off-by: Saul Wold Signed-off-by: Ross Burton --- diff --git a/meta/lib/oe/lsb.py b/meta/lib/oe/lsb.py index b53f361035..50c1d4720b 100644 --- a/meta/lib/oe/lsb.py +++ b/meta/lib/oe/lsb.py @@ -9,6 +9,7 @@ def release_dict(): data = {} for line in output.splitlines(): + if line.startswith("-e"): line = line[3:] try: key, value = line.split(":\t", 1) except ValueError: