fix the crate name being used by the gencode library.

Before all invocations would try to create a library called protobuf_codegen_upb_gen_code. Now it should properly use the name of the crate currently being built.

PiperOrigin-RevId: 658414835
This commit is contained in:
Derek Benson 2024-08-01 08:43:21 -07:00 коммит произвёл Copybara-Service
Родитель 582e80eb8a
Коммит f87523dd41
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -125,7 +125,7 @@ impl CodeGen {
}
}
}
cc_build.compile(&format!("{}_upb_gen_code", env!("CARGO_CRATE_NAME")));
cc_build.compile(&format!("{}_upb_gen_code", std::env::var("CARGO_PKG_NAME").unwrap()));
Ok(())
}