diff options
Diffstat (limited to 'meta/lib/oe/lsb.py')
-rw-r--r-- | meta/lib/oe/lsb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/lsb.py b/meta/lib/oe/lsb.py index ebf90baace..fed1204e85 100644 --- a/meta/lib/oe/lsb.py +++ b/meta/lib/oe/lsb.py @@ -1,9 +1,9 @@ def release_dict(): - """Return the output of lsb_release -a as a dictionary""" + """Return the output of lsb_release -ir as a dictionary""" from subprocess import PIPE try: - output, err = bb.process.run(['lsb_release', '-a'], stderr=PIPE) + output, err = bb.process.run(['lsb_release', '-ir'], stderr=PIPE) except bb.process.CmdError as exc: return None |