diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-03-06 19:23:58 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-03-06 19:23:58 +0000 |
commit | 329a4fa23be402ba1928995a78b9c8dceb96cb7b (patch) | |
tree | 1f0c631cbaa326a31f9e79e6b6622cb9e53ece50 /apps | |
parent | a915771347512ef48b5a73854a4bf5fab26eb6e3 (diff) |
Wrong ifdefing of the loader plugin caused an empty chessbox.rock to be included in the CVS builds (iPod, possibly iriver too). MEM is called MEMORYSIZE in SOURCES. D'oh
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8935 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/SOURCES | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES index 77abffb7d2..a0c2f3630b 100644 --- a/apps/plugins/SOURCES +++ b/apps/plugins/SOURCES @@ -74,7 +74,7 @@ calendar.c #endif #endif /* CONFIG_RTC */ -#if (MEM <= 8) && !defined(SIMULATOR) /* loaders, only needed for Archos */ +#if (MEMORYSIZE <= 8) && !defined(SIMULATOR) /* loaders, only needed for Archos */ chessbox.c #if CONFIG_KEYPAD == RECORDER_PAD rockboy.c |