Miscellaneous changes #266

Merged
lucas merged 49 commits from feat/misc into master 2025-07-02 16:25:44 +02:00
Showing only changes of commit 11c4eddaa4 - Show all commits

View file

@ -86,7 +86,7 @@ const LUAJIT_SRC: [&str; 69] = [
fn build_gcc(src_dir: &str) {
let mut buildcmd = Command::new("make");
buildcmd.current_dir(&src_dir);
buildcmd.current_dir(src_dir);
buildcmd.stderr(Stdio::inherit());
buildcmd.arg("--no-silent");