Skip to content

Commit 87b1729

Browse files
committed
Fixed idents
1 parent e5a4101 commit 87b1729

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/lib.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -440,13 +440,13 @@ impl Library {
440440
if is_system(val, &dirs) {
441441
panic!("The library \"{}\" is a system library, \
442442
which means it can't be linked statically!", val);
443-
}
444-
let meta = format!("rustc-link-lib=static={}", val);
445-
config.print_metadata(&meta);
446-
} else {
447-
let meta = format!("rustc-link-lib={}", val);
448-
config.print_metadata(&meta);
449443
}
444+
let meta = format!("rustc-link-lib=static={}", val);
445+
config.print_metadata(&meta);
446+
} else {
447+
let meta = format!("rustc-link-lib={}", val);
448+
config.print_metadata(&meta);
449+
}
450450
}
451451

452452
let mut iter = output.trim_right().split(' ');

0 commit comments

Comments
 (0)