Skip to content

Commit

Permalink
Merge branch 'tim/clean_buildrs_comma' into 'master'
Browse files Browse the repository at this point in the history
maint: Remove useless comma in build.rs

See merge request TankerHQ/sdk-rust!148
  • Loading branch information
tux3 committed Oct 26, 2022
2 parents 55bfb0d + cf5ae92 commit 44f908b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fn main() -> Result<(), Box<dyn Error>> {
// Tell cargo to link with our native library
if target_family != "windows" {
println!("cargo:rustc-link-search={}", bindings_folder);
println!("cargo:rustc-link-lib=static=ctanker",);
println!("cargo:rustc-link-lib=static=ctanker");
if !cfg!(feature = "without_vendored_libcxx")
&& (target_triplet.contains("-linux-android") || target_triplet.contains("-apple-ios"))
{
Expand Down

0 comments on commit 44f908b

Please sign in to comment.