diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2017-01-16 07:23:09 -0500 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2017-01-16 07:30:39 -0500 |
commit | 4f7fea2addf4a5bc7c301e78f53d9080eaf43fb6 (patch) | |
tree | 6b72c005607b8d4cda9b7c599716eec391fe43a9 /tools/database | |
parent | 16d1788356e82c639302a884437341e039574822 (diff) |
Fix path handling snafu for CheckWPS tool
Somehow it got hooked to simulator file functions when it should
be (and was) using raw OS functions.
Credit: Frank Gevaerts
Change-Id: Iac02fed1067830a432183632a047e00dfd03d3c2
Diffstat (limited to 'tools/database')
-rw-r--r-- | tools/database/SOURCES | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/database/SOURCES b/tools/database/SOURCES index 71593bba11..36d6247092 100644 --- a/tools/database/SOURCES +++ b/tools/database/SOURCES @@ -10,7 +10,11 @@ database.c ../../firmware/common/unicode.c ../../firmware/target/hosted/debug-hosted.c ../../firmware/logf.c +#ifdef WIN32 +../../firmware/target/hosted/filesystem-win32.c +#else /* !WIN32 */ ../../firmware/target/hosted/filesystem-unix.c +#endif /* WIN32 */ #ifdef APPLICATION ../../firmware/target/hosted/filesystem-app.c #else /* !APPLICATION */ |