]> git.kernelconcepts.de Git - karo-tx-redboot.git/blobdiff - build.sh
Bugfix Release STK5 2010-10-04
[karo-tx-redboot.git] / build.sh
index 9363ba525f9e1b87e42d77f299c853bd08ea84fe..b09c9afa451447ee668a735a4bdeaa60de23ab29 100644 (file)
--- a/build.sh
+++ b/build.sh
@@ -10,8 +10,6 @@ rebuild=false
 doit=true
 make_opts=
 
-cmd_prefix=${CROSS_COMPILE-arm-926ejs-linux-gnu-}
-
 error() {
     if [ -n "${target}" ];then
        echo "${target} build aborted"
@@ -49,10 +47,6 @@ build_host_tools() {
     cd "$wd"
 }
 
-if [ `uname -s` = Linux ];then
-    PATH="/usr/local/arm/cross-gcc-4.2.0/i686-pc-linux-gnu/bin:$PATH"
-fi
-
 while getopts "$options" opt;do
     case $opt in
        c)
@@ -148,13 +142,11 @@ for target in ${targets};do
 
     if $clean;then
        $quiet || echo "Cleaning up build tree for ${target}"
-       #make ${make_opts} COMMAND_PREFIX=${cmd_prefix} clean
        make ${make_opts} clean
     fi
 
     $quiet || echo "Compiling ${target}"
     [ -d "${build_dir}" ]
-    #make -C "${build_dir}" COMMAND_PREFIX=${cmd_prefix} ${make_opts}
     make -C "${build_dir}" ${make_opts}
 
     cd $wd