summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-04-25 12:50:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-04-25 12:50:25 +0000
commit8fd782814846075b50928af1db66bf4ac0bcd018 (patch)
treead9e58734aacaef001fd1bc246fccb7e5567e2bb /tools
parent012d1f86cc37205f2060b535de2775938dbb9688 (diff)
downloadrockbox-8fd782814846075b50928af1db66bf4ac0bcd018.tar.gz
rockbox-8fd782814846075b50928af1db66bf4ac0bcd018.zip
Don't pass in TOOLSDIR to the simulator Makefile until we've made the path
absolute. Using a relative path is not wise, since we use make -C when we build the simulator and the relative path to the tools dir is not the same from the build dir as from the simulator's main source dir... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3615 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 99f1d7dbf6..eef336c469 100755
--- a/tools/configure
+++ b/tools/configure
@@ -67,6 +67,7 @@ simul () {
67 67
68sed > Makefile \ 68sed > Makefile \
69 -e "s,@SIMDIR@,${simdir},g" \ 69 -e "s,@SIMDIR@,${simdir},g" \
70 -e "s,@TOOLSDIR@,${toolsdir},g" \
70 -e "s,@TARGET@,${target},g" \ 71 -e "s,@TARGET@,${target},g" \
71 -e "s,@ARCHOS@,${archos},g" \ 72 -e "s,@ARCHOS@,${archos},g" \
72 -e "s,@DEBUG@,${debug},g" \ 73 -e "s,@DEBUG@,${debug},g" \
@@ -81,6 +82,7 @@ sed > Makefile \
81 82
82ARCHOS=@ARCHOS@ 83ARCHOS=@ARCHOS@
83SIMDIR=@SIMDIR@ 84SIMDIR=@SIMDIR@
85TOOLSDIR=@TOOLSDIR@
84DEBUG=@DEBUG@ 86DEBUG=@DEBUG@
85TARGET=@TARGET@ 87TARGET=@TARGET@
86DISPLAY=@DISPLAY@ 88DISPLAY=@DISPLAY@