From 11c4eddaa4667ea7fffad40b034cf3fcb19fbdd3 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Tue, 28 Mar 2023 20:49:15 +0200 Subject: [PATCH] chore: Fix lcippy warning --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index d53448e..11b3984 100644 --- a/build.rs +++ b/build.rs @@ -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");