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 if atstage native; then
# install locales # install locales when building the default ABI or create
# # a symlink for the other selected ABIs
eval $MAKE localedata/install-locales if [ "$abi" == "$SDECFG_ABI_DEFAULT" ]; then
cp ../localedata/SUPPORTED $root/usr/share/i18n/ 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 if [ "$SDECFG_PKG_GLIBC_TLS" != 1 ]; then
# install linuxthread manpages # install linuxthread manpages

Loading…
Cancel
Save