mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-02-09 05:43:24 +08:00
build: Fix spec cache
The updated waf version deletes the waf cache directory in the build tree. This removes also the build specification item cache. Move the cache directory so that it works across configure commands.
This commit is contained in:
committed by
Amar Takhar
parent
84fe3d830c
commit
f4875c8f4d
2
wscript
2
wscript
@@ -1250,7 +1250,7 @@ def load_from_yaml(load, ctx, data_by_uid, base, path):
|
||||
|
||||
|
||||
def load_items_in_directory(ctx, ctors, path):
|
||||
p = "c4che/" + re.sub(r"[^\w]", "_", path) + ".pickle"
|
||||
p = re.sub(r"[^\w]", "_", path) + ".pickle"
|
||||
try:
|
||||
f = ctx.bldnode.make_node(p)
|
||||
except AttributeError:
|
||||
|
||||
Reference in New Issue
Block a user