Skip to content

Commit

Permalink
Same for FIPS; fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Dec 30, 2024
1 parent dbff502 commit 423ec30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 1 addition & 8 deletions aws-lc-fips-sys/builder/cmake_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@ fn find_cmake_command() -> Option<OsString> {
}
}

fn get_platform_output_path() -> PathBuf {
PathBuf::new()
}

impl CmakeBuilder {
pub(crate) fn new(
manifest_dir: PathBuf,
Expand All @@ -80,10 +76,7 @@ impl CmakeBuilder {
}

fn artifact_output_dir(&self) -> PathBuf {
self.out_dir
.join("build")
.join("artifacts")
.join(get_platform_output_path())
self.out_dir.join("build").join("artifacts")
}

fn get_cmake_config(&self) -> cmake::Config {
Expand Down
4 changes: 1 addition & 3 deletions aws-lc-sys/builder/cmake_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ impl CmakeBuilder {
}

fn artifact_output_dir(&self) -> PathBuf {
self.out_dir
.join("build")
.join("artifacts")
self.out_dir.join("build").join("artifacts")
}

fn get_cmake_config(&self) -> cmake::Config {
Expand Down

0 comments on commit 423ec30

Please sign in to comment.