aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-08-07 19:54:27 -0600
committerbors-servo <metajack+bors@gmail.com>2015-08-07 19:54:27 -0600
commitc528039a5324ffccc620bb49ad30823a1afab013 (patch)
tree23efdaf144fe605dd7145c043f34bb8107cb6456 /components/script/lib.rs
parentaf4e0a246a286325ed6bd23062e2dbeaf8bc1d50 (diff)
parent38286246df072508a32e70887d772576c9fc9bdd (diff)
downloadservo-c528039a5324ffccc620bb49ad30823a1afab013.tar.gz
servo-c528039a5324ffccc620bb49ad30823a1afab013.zip
Auto merge of #7051 - larsbergstrom:android_updates, r=mbrubeck
Update submodules and don't call setrlimit on Android r? @mbrubeck Fixes #6432. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7051) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 8fc23dc78b4..81a1a62b189 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -95,7 +95,7 @@ mod devtools;
mod horribly_inefficient_timers;
mod webdriver_handlers;
-#[cfg(any(target_os="linux", target_os="android"))]
+#[cfg(target_os="linux")]
#[allow(unsafe_code)]
fn perform_platform_specific_initialization() {
use std::mem;
@@ -111,7 +111,7 @@ fn perform_platform_specific_initialization() {
}
}
-#[cfg(not(any(target_os="linux", target_os="android")))]
+#[cfg(not(target_os="linux"))]
fn perform_platform_specific_initialization() {}
#[allow(unsafe_code)]