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.tar.gz
rockbox-a97fe2514d505cb4d55b73ac86367f0fb8cf8ba8.zip
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 e091ea0cc9..dd60bb825b 100755
--- a/tools/configure
+++ b/tools/configure
@@ -265,7 +265,7 @@ if [ -z "$archos" ]; then
265 archos="player" 265 archos="player"
266 target="-DARCHOS_PLAYER" 266 target="-DARCHOS_PLAYER"
267 shcc 267 shcc
268 tool="scramble" 268 tool="$rootdir/tools/scramble"
269 output="archos.mod" 269 output="archos.mod"
270 appextra="player" 270 appextra="player"
271 archosrom="" 271 archosrom=""
@@ -276,7 +276,7 @@ if [ -z "$archos" ]; then
276 archos="fmrecorder" 276 archos="fmrecorder"
277 target="-DARCHOS_FMRECORDER" 277 target="-DARCHOS_FMRECORDER"
278 shcc 278 shcc
279 tool="scramble -fm" 279 tool="$rootdir/tools/scramble -fm"
280 output="ajbrec.ajz" 280 output="ajbrec.ajz"
281 appextra="recorder" 281 appextra="recorder"
282 archosrom="$pwd/rombox.ucl" 282 archosrom="$pwd/rombox.ucl"
@@ -287,7 +287,7 @@ if [ -z "$archos" ]; then
287 archos="recorderv2" 287 archos="recorderv2"
288 target="-DARCHOS_RECORDERV2" 288 target="-DARCHOS_RECORDERV2"
289 shcc 289 shcc
290 tool="scramble -v2" 290 tool="$rootdir/tools/scramble -v2"
291 output="ajbrec.ajz" 291 output="ajbrec.ajz"
292 appextra="recorder" 292 appextra="recorder"
293 archosrom="$pwd/rombox.ucl" 293 archosrom="$pwd/rombox.ucl"
@@ -298,7 +298,7 @@ if [ -z "$archos" ]; then
298 archos="ondiosp" 298 archos="ondiosp"
299 target="-DARCHOS_ONDIOSP" 299 target="-DARCHOS_ONDIOSP"
300 shcc 300 shcc
301 tool="scramble -osp" 301 tool="$rootdir/tools/scramble -osp"
302 output="ajbrec.ajz" 302 output="ajbrec.ajz"
303 appextra="recorder" 303 appextra="recorder"
304 archosrom="$pwd/rombox.ucl" 304 archosrom="$pwd/rombox.ucl"
@@ -309,7 +309,7 @@ if [ -z "$archos" ]; then
309 archos="ondiofm" 309 archos="ondiofm"
310 target="-DARCHOS_ONDIOFM" 310 target="-DARCHOS_ONDIOFM"
311 shcc 311 shcc
312 tool="scramble -ofm" 312 tool="$rootdir/tools/scramble -ofm"
313 output="ajbrec.ajz" 313 output="ajbrec.ajz"
314 appextra="recorder" 314 appextra="recorder"
315 archosrom="$pwd/rombox.ucl" 315 archosrom="$pwd/rombox.ucl"
@@ -321,7 +321,7 @@ if [ -z "$archos" ]; then
321 target="-DIRIVER_H100" 321 target="-DIRIVER_H100"
322 memory=32 # always 322 memory=32 # always
323 coldfirecc 323 coldfirecc
324 tool="not-written-yet" 324 tool="cp"
325 output="rockbox.iriver" 325 output="rockbox.iriver"
326 appextra="" 326 appextra=""
327 archosrom="" 327 archosrom=""
@@ -332,7 +332,7 @@ if [ -z "$archos" ]; then
332 archos="recorder" 332 archos="recorder"
333 target="-DARCHOS_RECORDER" 333 target="-DARCHOS_RECORDER"
334 shcc 334 shcc
335 tool="scramble" 335 tool="$rootdir/tools/scramble"
336 output="ajbrec.ajz" 336 output="ajbrec.ajz"
337 appextra="recorder" 337 appextra="recorder"
338 archosrom="$pwd/rombox.ucl" 338 archosrom="$pwd/rombox.ucl"
@@ -449,7 +449,7 @@ export OBJDIR=@PWD@
449export LANGUAGE=@LANGUAGE@ 449export LANGUAGE=@LANGUAGE@
450export MEMORYSIZE=@MEMORY@ 450export MEMORYSIZE=@MEMORY@
451export VERSION=\$(shell date +%y%m%d-%H%M) 451export VERSION=\$(shell date +%y%m%d-%H%M)
452export MKFIRMWARE=\$(TOOLSDIR)/@TOOL@ 452export MKFIRMWARE=@TOOL@
453export BINARY=@OUTPUT@ 453export BINARY=@OUTPUT@
454export APPEXTRA=@APPEXTRA@ 454export APPEXTRA=@APPEXTRA@
455export ENABLEDPLUGINS=@PLUGINS@ 455export ENABLEDPLUGINS=@PLUGINS@