mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
meson: Fix typo, lower() -> to_lower()
This commit is contained in:
parent
40f97fe186
commit
8708f6a606
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ cc = meson.get_compiler('c')
|
||||||
if not meson.is_subproject() and cc.get_id() == 'msvc'
|
if not meson.is_subproject() and cc.get_id() == 'msvc'
|
||||||
uname = find_program('uname')
|
uname = find_program('uname')
|
||||||
ret = run_command(uname, '-o')
|
ret = run_command(uname, '-o')
|
||||||
if ret.returncode() == 0 and ret.stdout().lower() == 'msys'
|
if ret.returncode() == 0 and ret.stdout().to_lower() == 'msys'
|
||||||
ret = run_command(uname, '-r')
|
ret = run_command(uname, '-r')
|
||||||
# The kernel version returned by uname is actually the msys version
|
# The kernel version returned by uname is actually the msys version
|
||||||
if ret.returncode() == 0 and ret.stdout().startswith('2')
|
if ret.returncode() == 0 and ret.stdout().startswith('2')
|
||||||
|
|
Loading…
Reference in a new issue