diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-09-22 21:40:45 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-22 21:40:45 +0000 |
| commit | 8e55d0cca00ffcd139cb1f444cb2148e047f5289 (patch) | |
| tree | fefe1857c5f379aa38780cdbb2f82467dfe06bdb /tools | |
| parent | c2e887c5f740aa32acaa2524a940de4413e71282 (diff) | |
| download | rockbox-8e55d0cca00ffcd139cb1f444cb2148e047f5289.zip rockbox-8e55d0cca00ffcd139cb1f444cb2148e047f5289.tar.gz rockbox-8e55d0cca00ffcd139cb1f444cb2148e047f5289.tar.bz2 rockbox-8e55d0cca00ffcd139cb1f444cb2148e047f5289.tar.xz | |
adjusted to work better in the new concept
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5108 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 8118858..37791bc 100755 --- a/tools/configure +++ b/tools/configure @@ -263,6 +263,7 @@ if [ -z "$archos" ]; then output="archos.mod" appextra="player" archosrom="" + plugins="yes" ;; 3) @@ -273,6 +274,7 @@ if [ -z "$archos" ]; then output="ajbrec.ajz" appextra="recorder" archosrom="$pwd/rombox.ucl" + plugins="yes" ;; 4) @@ -283,6 +285,7 @@ if [ -z "$archos" ]; then output="ajbrec.ajz" appextra="recorder" archosrom="$pwd/rombox.ucl" + plugins="yes" ;; 7) @@ -293,6 +296,7 @@ if [ -z "$archos" ]; then output="ajbrec.ajz" appextra="recorder" archosrom="" + plugins="" ;; 8) @@ -303,6 +307,7 @@ if [ -z "$archos" ]; then output="ajbrec.ajz" appextra="recorder" archosrom="" + plugins="" ;; 9) @@ -314,6 +319,7 @@ if [ -z "$archos" ]; then output="rockbox.iriver" appextra="" archosrom="" + plugins="yes" ;; *) @@ -324,6 +330,7 @@ if [ -z "$archos" ]; then output="ajbrec.ajz" appextra="recorder" archosrom="$pwd/rombox.ucl" + plugins="yes" ;; esac @@ -416,6 +423,7 @@ sed > Makefile \ -e "s,@OUTPUT@,${output},g" \ -e "s,@APPEXTRA@,${appextra},g" \ -e "s,@ARCHOSROM@,${archosrom},g" \ + -e "s,@PLUGINS@,${plugins},g" \ <<EOF ## Automaticly generated. http://rockbox.haxx.se @@ -435,6 +443,7 @@ export VERSION=\$(shell date +%y%m%d-%H%M) export MKFIRMWARE=\$(TOOLSDIR)/@TOOL@ export BINARY=@OUTPUT@ export APPEXTRA=@APPEXTRA@ +export ENABLEDPLUGINS=@PLUGINS@ export CC=@CC@ export LD=@LD@ export AR=@AR@ |