comparison sources/control-images/lfs-bootstrap/mnt/build/readline.sh @ 1283:ba8e5317049c

More chipping away at the LFS build. Add basic locale support to uClibc config and hit gettext about the head and shoulders with sed until it compiles despite autoconf still being utterly useless.
author Rob Landley <rob@landley.net>
date Thu, 11 Nov 2010 04:50:39 -0600
parents a4cb2ed0a551
children c054a7a36cd9
comparison
equal deleted inserted replaced
1282:44073390f2b3 1283:ba8e5317049c
1 #!/bin/sh 1 #!/bin/sh
2 2
3 sed -k '/MV.*old/d' Makefile.in && 3 sed -i '/MV.*old/d' Makefile.in &&
4 sed -i '/{OLDSUFF}/c:' support/shlib-install && 4 sed -i '/{OLDSUFF}/c:' support/shlib-install &&
5 ./configure --prefix=/usr --libdir=/lib && 5 ./configure --prefix=/usr --libdir=/lib &&
6 make -j $CPUS SHLIB_LIBS=-lncurses && 6 make -j $CPUS SHLIB_LIBS=-lncurses &&
7 make install || exit 1 7 make install || exit 1
8 8