From e0c12aff3b78ff93607648f49a06128b450bf07e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 23 May 2002 09:39:31 +0000 Subject: bash happy now? git-svn-id: svn://svn.rockbox.org/rockbox/trunk@660 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/tools/configure b/tools/configure index d95f965d43..b65dc03295 100755 --- a/tools/configure +++ b/tools/configure @@ -111,29 +111,27 @@ if [ -z "$appsdir" ]; then appsdir=`input` fi -echo "Firmware directory: $firmdir" -echo "Apps directory: $appsdir" -echo "CFLAGS=\"$debug $target\"" - pwd=`pwd`; -sed \ - -e "s,@FIRMDIR@,$firmdir,g" \ - -e "s,@APPSDIR@,$appsdir,g" \ - -e "s,@DEBUG@,$debug,g" \ - -e "s,@TARGET@,$target,g" \ - -e "s,@PWD@,$pwd,g" \ -< Makefile +sed > Makefile \ + -e "s,@FIRMDIR@,${firmdir},g" \ + -e "s,@APPSDIR@,${appsdir},g" \ + -e "s,@DEBUG@,${debug},g" \ + -e "s,@TARGET@,${target},g" \ + -e "s,@PWD@,${pwd},g" \ +<