Skip to content

Commit

Permalink
Fix config import path for non-nasm builds
Browse files Browse the repository at this point in the history
  • Loading branch information
randomPoison committed Jul 16, 2024
1 parent 4dbf4f5 commit 0470dbf
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 @@ -308,7 +308,7 @@ mod asm {
cc::Build::new()
.files(asm_file_paths)
.include(".")
.include(&out_dir)
.include(&config_dir)
.debug(cfg!(debug_assertions))
.compile(rav1dasm);
}
Expand Down

0 comments on commit 0470dbf

Please sign in to comment.