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" \ +<