From 7be7c7769f9532b2aca98e271540a565a6a321e6 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Sat, 27 Dec 2014 00:37:59 +0200 Subject: Fix build failure due to missing dependency in SConscript --- tests/common/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/common/SConscript b/tests/common/SConscript index a202ca47..05e2f852 100644 --- a/tests/common/SConscript +++ b/tests/common/SConscript @@ -41,8 +41,8 @@ malloc_strict.Object("pb_decode_with_malloc.o", "$NANOPB/pb_decode.c") malloc_strict.Object("pb_encode_with_malloc.o", "$NANOPB/pb_encode.c") malloc_strict.Object("pb_common_with_malloc.o", "$NANOPB/pb_common.c") -mw = env.Object("malloc_wrappers.o", "malloc_wrappers.c") -Depends(mw, ["malloc_wrappers_syshdr.h"]) +malloc_env.Object("malloc_wrappers.o", "malloc_wrappers.c") +malloc_env.Depends("$NANOPB/pb.h", ["malloc_wrappers_syshdr.h", "malloc_wrappers.h"]) Export("malloc_env") -- cgit 1.2.3-korg