From 2dbe05522d81ab640059a7e8f974985e8dbf74f7 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Thu, 22 Jun 2006 17:55:31 +0000 Subject: [PATCH] * changed FOOTPRINT.conf, embedded and light are only cross compiled and without NLS support. embedded use termcap. --- pkgsel/Base/FOOTPRINT.conf | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgsel/Base/FOOTPRINT.conf b/pkgsel/Base/FOOTPRINT.conf index 82e4536..894d866 100644 --- a/pkgsel/Base/FOOTPRINT.conf +++ b/pkgsel/Base/FOOTPRINT.conf @@ -13,21 +13,18 @@ # GNU General Public License can be found in the file COPYING. # --- T2-COPYRIGHT-NOTE-END --- -y= case "$SDECFG_TRG_MNEMOSYNE_FOOTPRINT" in - embedded) - y="DISABLE_NLS=1" - y="$y PKG_TERMCAP_USEIT=1 PKG_TERMCAP_USETERMUTILS=1 STATIC=1" + embedded|light) + const SDECFG_DISABLE_NLS 1 pkgfilter sed -e 's,^\(.\) \(.\)[^ ]*,\1 \21--------,' ;; - light) - y="DISABLE_NLS=1" - ;; - *) # regular +esac + +case "$SDECFG_TRG_MNEMOSYNE_FOOTPRINT" in + embedded) + const SDECFG_STATIC 1 + const SDECFG_PKG_TERMCAP_USEIT 1 + const SDECFG_PKG_TERMCAP_USETERMUTILS 1 ;; esac -for x in $y; do - eval SDECFGSET_$x - const SDECFG_${x/=/ } -done