From 6cd333b14bb242419403578e99ee989c2dacfcd9 Mon Sep 17 00:00:00 2001 From: Volkan Date: Thu, 22 Jun 2023 09:13:29 +0200 Subject: [PATCH] Fix rebuildiing issue (#878) --- libs/stdlib/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/stdlib/build.rs b/libs/stdlib/build.rs index 26a86f41d6..d124d67eaf 100644 --- a/libs/stdlib/build.rs +++ b/libs/stdlib/build.rs @@ -32,7 +32,7 @@ fn main() { //link the object file println!("cargo:rustc-link-search=native={out_dir}"); println!("cargo:rustc-link-lib=static=st"); - println!("cargo:rerun-if-changed=iec61131-st/*"); + println!("cargo:rerun-if-changed=iec61131-st/"); //We can link against the st lib gernerated, but this will only be reflected in static libs. // The shared lib still has to be generated later.