1
0
Fork 0
forked from len0rd/rockbox

now configure update works for simulator builds too

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@878 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-03 21:56:48 +00:00
parent 2d4f717adc
commit 63787dffde

4
tools/configure vendored
View file

@ -97,6 +97,10 @@ if [ "$target" = "update" ]; then
echo "Existing generated Makefile found. Getting defaults from it." echo "Existing generated Makefile found. Getting defaults from it."
target=`grep "^TARGET=" Makefile | cut -d= -f2-` target=`grep "^TARGET=" Makefile | cut -d= -f2-`
debug=`grep "^DEBUG=" Makefile | cut -d= -f2-` debug=`grep "^DEBUG=" Makefile | cut -d= -f2-`
if [ "$debug" = "SIMULATOR=1" ]; then
simulator="yes"
fi
fi fi
fi fi
else else