4 echo "Downloading glibc-$VERSION.tar.gz from http://ftp.gnu.org/gnu/glibc..."
5 if wget -q http://ftp.gnu.org/gnu/glibc/glibc-$VERSION.tar.gz; then
6 echo "Extracting the \"charmaps\" directory..."
7 if tar xfz glibc-$VERSION.tar.gz glibc-$VERSION/localedata/charmaps; then
10 echo "!! Can\'t find the \"charmaps\" directory in the tar ball."
14 echo "!! Downloading failed"
18 rm -f glibc-$VERSION.tar.gz
19 ./configure --with-charmaps=glibc-$VERSION/localedata/charmaps
20 echo "Ready to run make."