From 3e69481fe4d235e7bb39699251dffb2367fa7c37 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 21 Nov 2005 16:06:29 +0000 Subject: Missed for a very long time: now runs make in the tools dir first when building target versions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8026 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/configure b/tools/configure index 9c95182..026a29e 100755 --- a/tools/configure +++ b/tools/configure @@ -792,9 +792,11 @@ if test "$simulator" = "yes"; then # add simul make stuff on the #SIMUL# line simmagic='/#SIMUL#/c\ @$(MAKE) -C $(SIMDIR) OBJDIR=$(BUILDDIR)/sim\n @$(MAKE) -C $(ROOTDIR)/uisimulator/common OBJDIR=$(BUILDDIR)/comsim' + simtools='s/#TOOLSDEP#//' else # delete the line that matches simmagic='/#SIMUL#/D' + simtools='s/#TOOLSDEP#/tools/' fi sed > Makefile \ @@ -833,6 +835,7 @@ sed > Makefile \ -e "s,@UNAME@,${uname},g" \ -e "s,@ENDIAN@,${defendian},g" \ -e "${simmagic}" \ + -e "${simtools}" \ <