summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-06-30 08:13:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-06-30 08:13:36 +0000
commit069e2a5b8cc21d5f44d488926344fd5a805b8436 (patch)
tree3a66741abb3f013eb5ce45b57247ce21c862b7aa /tools
parent1983738ea11e3b8706bab5a1e8efe5ee947bfa4f (diff)
downloadrockbox-069e2a5b8cc21d5f44d488926344fd5a805b8436.tar.gz
rockbox-069e2a5b8cc21d5f44d488926344fd5a805b8436.zip
Now checks that sed works right before the Makefile for a simulator is created,
since there are broken ones in use out there and they make bad Makefiles. Details at: http://www.rockbox.org/twiki/bin/view/Main/BrokenSed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6939 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 464ea4c220..0d0ffda6d8 100755
--- a/tools/configure
+++ b/tools/configure
@@ -679,6 +679,18 @@ sed > autoconf.h \
EOF
if test "$simulator" = "yes"; then
+ # verify that we have a sed version we can use!
+ lines=`echo "moo" | sed -e '/moo/cline1\nline2\nline3' | wc -l`
+ if test "$lines" -eq "1"; then
+ echo "You have a broken sed version. You must upgrade to be able to "
+ echo "generate a fine Makefile. See details at:"
+ echo "http://www.rockbox.org/twiki/bin/view/Main/BrokenSed"
+ exit
+ else
+ version=`sed --version | head -n 1`
+ echo "$version is a fine sed"
+ fi
+
# 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'
else