Added an autogen.sh script to simplify things.

This commit is contained in:
Layla Marchant 2020-03-12 16:13:33 -04:00
parent e382adb08a
commit 7f329abc28
2 changed files with 10 additions and 6 deletions

View File

@ -134,12 +134,7 @@ And the following is required to build locales:
Once these dependencies are installed, simply do the following from a
terminal window:
autoreconf -vif
cd locale
./build.py
cd ..
The arguments to autoreconf are technically optional, but recommended.
./autogen.sh
The Python script build.py may fail on MacOS due to a missing msgfmt
program. msgfmt is part of gettext and the version that ships on a Mac

9
autogen.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
echo "Generating configure script..."
autoreconf -vif
echo "Done."
echo "Building locales..."
cd locale
./build.py
cd ..