Browse Source

* fixed FOOTPRINT.conf due to missuse of case/esac

legacy/multilib
Alejandro Mery 19 years ago
parent
commit
43496f6f7c
1 changed files with 12 additions and 5 deletions
  1. +12
    -5
      pkgsel/Base/FOOTPRINT.conf

+ 12
- 5
pkgsel/Base/FOOTPRINT.conf

@ -13,13 +13,20 @@
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
y=
case "$SDECFG_TRG_MNEMOSYNE_FOOTPRINT" in
embedded|light)
SDECFGSET_DISABLE_NLS='1'
embedded)
y="DISABLE_NLS=1"
y="$y PKG_TERMCAP_USEIT=1 PKG_TERMCAP_USETERMUTILS=1 STATIC=1"
;;
embedded)
SDECFGSET_PKG_TERMCAP_USEIT='1'
SDECFGSET_PKG_TERMCAP_USETERMUTILS='1'
light)
y="DISABLE_NLS=1"
;;
*) # regular
;;
esac
for x in $y; do
eval SDECFGSET_$x
const SDECFG_${x/=/ }
done

Loading…
Cancel
Save