From ef5e865089e06c6e41e892ac6591a6bb25cb959e Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Wed, 25 Nov 2015 08:47:33 +0100 Subject: [PATCH] Add true/false back to multicall binary --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index c66ce6fc9..fb46048f3 100644 --- a/build.rs +++ b/build.rs @@ -29,8 +29,8 @@ pub fn main() { let mut map: UtilityMap = HashMap::new();\n".as_bytes()).unwrap(); for krate in crates { match krate.as_ref() { - "false" => continue, - "true" => continue, + "false" => {}, + "true" => {}, _ => cf.write_all(format!("extern crate {krate} as uu{krate};\n", krate=krate).as_bytes()).unwrap(), }