Browse Source

glibc: fixed to only install locales when building the default ABI and to create a symlink for the other selected ABIs

user/chris/test/multilib
Christian Wiese 13 years ago
parent
commit
d55c199493
  1. 12
      base/glibc/glibc.conf

12
base/glibc/glibc.conf

@ -211,10 +211,14 @@ pkg_glibc_postmake()
#
if atstage native; then
# install locales
#
eval $MAKE localedata/install-locales
cp ../localedata/SUPPORTED $root/usr/share/i18n/
# install locales when building the default ABI or create
# a symlink for the other selected ABIs
if [ "$abi" == "$SDECFG_ABI_DEFAULT" ]; then
eval $MAKE localedata/install-locales
cp ../localedata/SUPPORTED $root/usr/share/i18n/
else
ln -sf ../lib/locale $root$libdir/locale
fi
if [ "$SDECFG_PKG_GLIBC_TLS" != 1 ]; then
# install linuxthread manpages

Loading…
Cancel
Save