diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 12:50:25 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 12:50:25 +0000 |
| commit | 8fd782814846075b50928af1db66bf4ac0bcd018 (patch) | |
| tree | ad9e58734aacaef001fd1bc246fccb7e5567e2bb | |
| parent | 012d1f86cc37205f2060b535de2775938dbb9688 (diff) | |
| download | rockbox-8fd782814846075b50928af1db66bf4ac0bcd018.zip rockbox-8fd782814846075b50928af1db66bf4ac0bcd018.tar.gz rockbox-8fd782814846075b50928af1db66bf4ac0bcd018.tar.bz2 rockbox-8fd782814846075b50928af1db66bf4ac0bcd018.tar.xz | |
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
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 99f1d7d..eef336c 100755 --- a/tools/configure +++ b/tools/configure @@ -67,6 +67,7 @@ simul () { sed > Makefile \ -e "s,@SIMDIR@,${simdir},g" \ + -e "s,@TOOLSDIR@,${toolsdir},g" \ -e "s,@TARGET@,${target},g" \ -e "s,@ARCHOS@,${archos},g" \ -e "s,@DEBUG@,${debug},g" \ @@ -81,6 +82,7 @@ sed > Makefile \ ARCHOS=@ARCHOS@ SIMDIR=@SIMDIR@ +TOOLSDIR=@TOOLSDIR@ DEBUG=@DEBUG@ TARGET=@TARGET@ DISPLAY=@DISPLAY@ |