From 1a64a08698c48ff1d0dfc1f29fb50861f561d365 Mon Sep 17 00:00:00 2001 From: Vijay Kumar Banerjee Date: Sun, 26 Apr 2020 15:26:37 +0530 Subject: filesystem: Fix file not found error --- file_io/crc/wscript | 2 ++ filesystem/fat_ramdisk/wscript | 2 ++ 2 files changed, 4 insertions(+) diff --git a/file_io/crc/wscript b/file_io/crc/wscript index 45384a9..45596d2 100644 --- a/file_io/crc/wscript +++ b/file_io/crc/wscript @@ -31,6 +31,8 @@ def build(bld): name = 'fs-root', root = 'rootfs') + bld.path.find_or_declare('fs-root-tar.h') + bld(features = 'c cprogram', target = 'crc.exe', includes = bld.includes, diff --git a/filesystem/fat_ramdisk/wscript b/filesystem/fat_ramdisk/wscript index ecf216f..185652a 100644 --- a/filesystem/fat_ramdisk/wscript +++ b/filesystem/fat_ramdisk/wscript @@ -31,6 +31,8 @@ def build(bld): name = 'fs-root', root = 'rootfs') + bld.path.find_or_declare('fs-root-tar.h') + bld(features = 'c cprogram', target = 'fat_ramdisk.exe', includes = bld.includes, -- cgit v1.2.3