summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-10-07 08:08:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-10-07 08:08:05 +0000
commita97fe2514d505cb4d55b73ac86367f0fb8cf8ba8 (patch)
tree7c9342146f2af9f2be36ac253a69225783a1be88
parentd681087ad07568e2c102fc235f10bd2a8047bb27 (diff)
downloadrockbox-a97fe2514d505cb4d55b73ac86367f0fb8cf8ba8.zip
rockbox-a97fe2514d505cb4d55b73ac86367f0fb8cf8ba8.tar.gz
rockbox-a97fe2514d505cb4d55b73ac86367f0fb8cf8ba8.tar.bz2
rockbox-a97fe2514d505cb4d55b73ac86367f0fb8cf8ba8.tar.xz
Make the tool variable hold the full path, and make the iriver tool 'cp'
for now. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5203 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/configure b/tools/configure
index e091ea0..dd60bb8 100755
--- a/tools/configure
+++ b/tools/configure
@@ -265,7 +265,7 @@ if [ -z "$archos" ]; then
archos="player"
target="-DARCHOS_PLAYER"
shcc
- tool="scramble"
+ tool="$rootdir/tools/scramble"
output="archos.mod"
appextra="player"
archosrom=""
@@ -276,7 +276,7 @@ if [ -z "$archos" ]; then
archos="fmrecorder"
target="-DARCHOS_FMRECORDER"
shcc
- tool="scramble -fm"
+ tool="$rootdir/tools/scramble -fm"
output="ajbrec.ajz"
appextra="recorder"
archosrom="$pwd/rombox.ucl"
@@ -287,7 +287,7 @@ if [ -z "$archos" ]; then
archos="recorderv2"
target="-DARCHOS_RECORDERV2"
shcc
- tool="scramble -v2"
+ tool="$rootdir/tools/scramble -v2"
output="ajbrec.ajz"
appextra="recorder"
archosrom="$pwd/rombox.ucl"
@@ -298,7 +298,7 @@ if [ -z "$archos" ]; then
archos="ondiosp"
target="-DARCHOS_ONDIOSP"
shcc
- tool="scramble -osp"
+ tool="$rootdir/tools/scramble -osp"
output="ajbrec.ajz"
appextra="recorder"
archosrom="$pwd/rombox.ucl"
@@ -309,7 +309,7 @@ if [ -z "$archos" ]; then
archos="ondiofm"
target="-DARCHOS_ONDIOFM"
shcc
- tool="scramble -ofm"
+ tool="$rootdir/tools/scramble -ofm"
output="ajbrec.ajz"
appextra="recorder"
archosrom="$pwd/rombox.ucl"
@@ -321,7 +321,7 @@ if [ -z "$archos" ]; then
target="-DIRIVER_H100"
memory=32 # always
coldfirecc
- tool="not-written-yet"
+ tool="cp"
output="rockbox.iriver"
appextra=""
archosrom=""
@@ -332,7 +332,7 @@ if [ -z "$archos" ]; then
archos="recorder"
target="-DARCHOS_RECORDER"
shcc
- tool="scramble"
+ tool="$rootdir/tools/scramble"
output="ajbrec.ajz"
appextra="recorder"
archosrom="$pwd/rombox.ucl"
@@ -449,7 +449,7 @@ export OBJDIR=@PWD@
export LANGUAGE=@LANGUAGE@
export MEMORYSIZE=@MEMORY@
export VERSION=\$(shell date +%y%m%d-%H%M)
-export MKFIRMWARE=\$(TOOLSDIR)/@TOOL@
+export MKFIRMWARE=@TOOL@
export BINARY=@OUTPUT@
export APPEXTRA=@APPEXTRA@
export ENABLEDPLUGINS=@PLUGINS@