From: Heiko Z. <smi...@us...> - 2011-11-26 16:28:43
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv22264 Modified Files: settings functions Log Message: fixed typos Index: functions =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/functions,v retrieving revision 1.76 retrieving revision 1.77 diff -u -d -r1.76 -r1.77 --- functions 21 Nov 2011 21:17:22 -0000 1.76 +++ functions 26 Nov 2011 16:28:40 -0000 1.77 @@ -249,7 +249,7 @@ ;; * ) - echo "unkown menu type" + echo "unknown menu type" exit 1 ;; esac @@ -450,7 +450,7 @@ bool) set_kernel_option $CFGOPTION y ;; *) - echo "ignoring unkown config type '${CFG##*#}' for '$CFGOPTION'" + echo "ignoring unknown config type '${CFG##*#}' for '$CFGOPTION'" #exit 1 ;; esac Index: settings =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/settings,v retrieving revision 1.65 retrieving revision 1.66 diff -u -d -r1.65 -r1.66 --- settings 21 Nov 2011 21:17:22 -0000 1.65 +++ settings 26 Nov 2011 16:28:40 -0000 1.66 @@ -109,14 +109,14 @@ if [ "$CONFIG_CPU" != "x86_64" ]; then export CFLAGS="-mtune=${CONFIG_GCC_CPU} -march=${CONFIG_GCC_CPU}" export CXXFLAGS="$CFLAGS" - CONF_HOST="i$CONFIG_CPU-unkown-linux-gnu" + CONF_HOST="i$CONFIG_CPU-unknown-linux-gnu" export HOSTTYPE=i${CONFIG_CPU} export MACHTYPE=${CONF_HOST} export CPU=i${CONFIG_CPU} else export CFLAGS="-m64" export CXXFLAGS="$CFLAGS" - CONF_HOST="x86_64-unkown-linux-gnu" + CONF_HOST="x86_64-unknown-linux-gnu" export HOSTTYPE=x86_64 export MACHTYPE=${CONF_HOST} export CPU=x86_64 |