Skip to content

Commit 0b24b15

Browse files
committed
Fix the duplicated 'cargo:' prefix bug
1 parent 88d93b3 commit 0b24b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ impl Library {
408408
continue
409409
}
410410
if let Some(lib) = iter.next() {
411-
let meta = format!("cargo:rustc-link-lib=framework={}", lib);
411+
let meta = format!("rustc-link-lib=framework={}", lib);
412412
config.print_metadata(&meta);
413413
self.frameworks.push(lib.to_string());
414414
}

0 commit comments

Comments
 (0)