1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Sevakis 2017-01-16 07:23:09 -05:00
parent 16d1788356
commit 4f7fea2add
5 changed files with 12 additions and 9 deletions

View file

@ -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 */