view sources/control-images/lfs-bootstrap/mnt/build/gettext.sh @ 1288:c054a7a36cd9

Add rather a lot of Linux From Scratch 6.7 building infrastructure. Needs a bit more debugging.
author Rob Landley <rob@landley.net>
date Wed, 17 Nov 2010 22:09:19 -0600
parents ba8e5317049c
children
line wrap: on
line source

#!/bin/sh

# Swap out incestuous knowledge of the internals of glibc for incestuous
# knowledge of the internals of uClibc.  (The resulting code should never
# trigger anyway, but it needs to be able to _compile_...)

sed -i 's/thread_locale->__names\[category]/thread_locale->cur_locale/' \
  gettext-runtime/intl/localename.c gettext-tools/gnulib-lib/localename.c &&
sed -i 's%LIBS = @LIBS@%LIBS = @LIBS@ ../libgrep/libgrep.a%' \
  gettext-tools/src/Makefile.in gettext-tools/tests/Makefile.in &&

./configure --prefix=/usr --docdir=/usr/share/doc/gettext &&
make -j $CPUS || exit 1

if [ ! -z "$DOCS" ]
then
  make check || exit 1
fi

make install