Bug 1337162 - Enable the Linux content sandbox for non-Nightly builds. r?glandium draft
authorGian-Carlo Pascutto <gcp@mozilla.com>
Mon, 27 Feb 2017 18:01:33 +0100
changeset 490099 dff1cac0f2950b0880f5479240c19360420af2f8
parent 490098 fe12200aa33ad5970712ba7cf4c546d12746c9f2
child 547163 cab1ea4507187a4884745eacd5c24db06d97b5be
push id46992
push usergpascutto@mozilla.com
push dateMon, 27 Feb 2017 17:02:43 +0000
reviewersglandium
bugs1337162
milestone54.0a1
Bug 1337162 - Enable the Linux content sandbox for non-Nightly builds. r?glandium MozReview-Commit-ID: 65aPquHzyfP
old-configure.in
--- a/old-configure.in
+++ b/old-configure.in
@@ -3732,24 +3732,24 @@ MOZ_ARG_DISABLE_BOOL(sandbox,
 
 dnl ========================================================
 dnl = Content process sandboxing
 dnl ========================================================
 if test -n "$gonkdir"; then
     MOZ_CONTENT_SANDBOX=$MOZ_SANDBOX
 fi
 
-case "$OS_TARGET:$NIGHTLY_BUILD" in
-WINNT:*)
+case "$OS_TARGET" in
+WINNT)
     MOZ_CONTENT_SANDBOX=$MOZ_SANDBOX
     ;;
-Darwin:*)
+Darwin)
     MOZ_CONTENT_SANDBOX=$MOZ_SANDBOX
     ;;
-Linux:1)
+Linux)
     case $CPU_ARCH in
         x86_64|x86)
             MOZ_CONTENT_SANDBOX=$MOZ_SANDBOX
         ;;
     esac
     ;;
 esac