autogen.sh 132 B

12345678910
  1. #!/bin/sh
  2. echo "Generating configure script..."
  3. autoreconf -vif
  4. echo "Done."
  5. echo "Building locales..."
  6. cd locale
  7. ./build.py
  8. cd ..