Bug 1040413 - Do not cast ANDROID_VERSION to int; r=nalexander

Ideally it should be converted to an int. But empty variables need to
work. The rest of the tree uses string comparisons.

--HG--
extra : rebase_source : 16701034df6b5047bcd7ca529785ee97b76412ed
extra : amend_source : 9c1cc54c1820dccae514ad06dac5677710e9a8f0
This commit is contained in:
Gregory Szorc 2014-07-17 16:49:37 -07:00
parent 27213f8307
commit f0906d7f80

View File

@ -48,7 +48,7 @@ if 'rtsp' in CONFIG['NECKO_PROTOCOLS']:
'RtspOmxReader.cpp',
]
if int(CONFIG['ANDROID_VERSION']) >= 16:
if CONFIG['ANDROID_VERSION'] >= '16':
EXPORTS += [
'I420ColorConverterHelper.h',
'MediaCodecDecoder.h',