From: Kevin Day Date: Mon, 19 Jun 2023 03:04:00 +0000 (-0500) Subject: Bugfix: Featureless Make is not operating properly due to failure to clear cache. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=859314ac77bd30688169a9f69a59a02033c34d84;p=fll Bugfix: Featureless Make is not operating properly due to failure to clear cache. Handle some cases where the cache is not being cleared. --- diff --git a/level_3/fake/c/main/build/object.c b/level_3/fake/c/main/build/object.c index b374e74..d81ba03 100644 --- a/level_3/fake/c/main/build/object.c +++ b/level_3/fake/c/main/build/object.c @@ -40,6 +40,8 @@ extern "C" { return 0; } + fake_string_dynamic_reset(&main->cache_argument); + { main->setting.state.status = f_string_dynamic_append_nulless(data->path_build_objects_shared, &main->cache_argument); @@ -114,6 +116,8 @@ extern "C" { return 0; } + fake_string_dynamic_reset(&main->cache_argument); + { main->setting.state.status = f_string_dynamic_append_nulless(data->path_build_objects_static, &main->cache_argument);