[rtems-examples commit] filesystem: Fix file not found error
Vijay Kumar Banerjee
vijay at rtems.org
Mon Apr 27 09:25:15 UTC 2020
Module: rtems-examples
Branch: master
Commit: 1a64a08698c48ff1d0dfc1f29fb50861f561d365
Changeset: http://git.rtems.org/rtems-examples/commit/?id=1a64a08698c48ff1d0dfc1f29fb50861f561d365
Author: Vijay Kumar Banerjee <vijay at rtems.org>
Date: Sun Apr 26 15:44:37 2020 +0530
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,
More information about the vc
mailing list