Bug 1119921 - Fix "$ANDROID_VERSION" comparison tests. r=nalexander

--HG--
extra : amend_source : 50fa678c38bac71807cd09991d1b4239b5f666b9
This commit is contained in:
Abhishek Bhattacharya 2015-01-17 16:42:04 -08:00
parent f67be0ccdd
commit 073710992b
2 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,7 @@ fi
# Even after dropping 10.6 support, MOZ_PIE would not be useful since it's the # Even after dropping 10.6 support, MOZ_PIE would not be useful since it's the
# default (and clang says the -pie option is not used). # default (and clang says the -pie option is not used).
# On other Unix systems, some file managers (Nautilus) can't start PIE programs # On other Unix systems, some file managers (Nautilus) can't start PIE programs
if test -n "$gonkdir" -a "$ANDROID_VERSION" -ge 16; then if test -n "$gonkdir" && test "$ANDROID_VERSION" -ge 16; then
MOZ_PIE=1 MOZ_PIE=1
else else
MOZ_PIE= MOZ_PIE=

View File

@ -5085,7 +5085,7 @@ if test -n "$MOZ_WEBRTC"; then
fi fi
dnl Temporary until webrtc works on gonk-L dnl Temporary until webrtc works on gonk-L
if test -n "$gonkdir" -a "$ANDROID_VERSION" -ge 21; then if test -n "$gonkdir" && test "$ANDROID_VERSION" -ge 21; then
MOZ_WEBRTC= MOZ_WEBRTC=
fi fi