diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2012-08-06 19:26:33 -0400 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2012-08-06 19:26:33 -0400 |
| commit | 6f55433b0163f1bb193056b669f4baebf97f0247 (patch) | |
| tree | 44b203989d03488c9f15727f95ce5e9704fab2e2 | |
| parent | 633dd492831db37f4df98315425ee146b8cb312b (diff) | |
| download | rockbox-6f55433b0163f1bb193056b669f4baebf97f0247.zip rockbox-6f55433b0163f1bb193056b669f4baebf97f0247.tar.gz rockbox-6f55433b0163f1bb193056b669f4baebf97f0247.tar.bz2 rockbox-6f55433b0163f1bb193056b669f4baebf97f0247.tar.xz | |
Don't enable log to disk on PCTOOL builds since there is no disk to log to.
Change-Id: Ida589bcd20227f626349f80293bb423d784519be
| -rw-r--r-- | firmware/export/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 8b95882..0857a8e 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -1134,7 +1134,8 @@ Lyre prototype 1 */ #endif /* enable logging messages to disk*/ -#if CONFIG_PLATFORM == PLATFORM_NATIVE && !defined(SIMULATOR) && !defined(BOOTLOADER) +#if CONFIG_PLATFORM == PLATFORM_NATIVE && !defined(SIMULATOR) && !defined(BOOTLOADER) \ + && !defined(__PCTOOL__) #define ROCKBOX_HAS_LOGDISKF #endif |