1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2003-04-25 12:50:25 +00:00
parent 012d1f86cc
commit 8fd7828148

2
tools/configure vendored
View file

@ -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@