diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-09-19 08:27:38 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-09-19 08:27:38 +0000 |
| commit | a316213f0fe669b3d956a6936fabd94904a36bb4 (patch) | |
| tree | 4c502201f5f5bcb7840c961861a08c9d820c4c8e | |
| parent | d2d2ecc310614e70d813779582b2079fcbfca35f (diff) | |
| download | rockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.zip rockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.tar.gz rockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.tar.bz2 rockbox-a316213f0fe669b3d956a6936fabd94904a36bb4.tar.xz | |
Fixed DISABLE_DEMOS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2331 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 5f5ca51..d5d20b3 100755 --- a/tools/configure +++ b/tools/configure @@ -211,10 +211,10 @@ if [ "-" = "$extra_defines" ]; then if [ "-DARCHOS_RECORDER" = "$target" ] ; then - echo "Do you want to use Screensavers? (Y)" + echo "Do you want to use Demos? (Y)" getit=`input`; if [ "n" = "$getit" -o "N" = "$getit" ] ; then - extra_defines="$extra_defines -DDISABLE_SCREENSAVERS" + extra_defines="$extra_defines -DDISABLE_DEMOS" else extra_defines="$extra_defines" fi |