From eab1fd14c6f25dbc8b36e66cea75128edf1492c9 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 7 Apr 2009 12:07:27 +0200 Subject: [PATCH] change Options for debug --- config/options | 24 ------------------------ config/path | 8 ++++++++ 2 files changed, 8 insertions(+), 24 deletions(-) diff --git a/config/options b/config/options index 4f7487aacb..e1f9e3a1e4 100644 --- a/config/options +++ b/config/options @@ -135,30 +135,6 @@ LCD_MODEL=HD44780-winamp LCD_WIDTH=16 LCD_HEIGHT=2 -if [ "$OPENELEC_VERSION" = devel ]; then - - # enable debuging (debugging flags and enables gdb) - DEBUG=no - - # enable gdb (yes/no) - GDB=yes - - # enable devel tools (yes/no) - DEVTOOLS=yes - -else - - # enable debuging (debugging flags and enables gdb) - DEBUG=no - - # enable gdb (yes/no) - GDB=no - - # enable devel tools (yes/no) - DEVTOOLS=no - -fi - # verbose compilation mode (yes/no) VERBOSE=yes diff --git a/config/path b/config/path index 3673970da4..974f0c5c40 100644 --- a/config/path +++ b/config/path @@ -26,6 +26,14 @@ SYSROOT_PREFIX=$ROOT/$TOOLCHAIN/$TARGET_NAME/sysroot LIB_PREFIX=$SYSROOT_PREFIX/usr TARGET_PREFIX=$ROOT/$TOOLCHAIN/bin/$TARGET_NAME- +if [ "$OPENELEC_VERSION" = devel ]; then + DEVTOOLS=yes + DEBUG=no +else + DEVTOOLS=no + DEBUG=no +fi + HOST_NAME_CACHE=$BUILD/configtools/host_name if [ -f $HOST_NAME_CACHE ]; then HOST_NAME=`cat $HOST_NAME_CACHE`