Added an autogen.sh script to simplify things.
This commit is contained in:
parent
e382adb08a
commit
7f329abc28
|
@ -134,12 +134,7 @@ And the following is required to build locales:
|
||||||
Once these dependencies are installed, simply do the following from a
|
Once these dependencies are installed, simply do the following from a
|
||||||
terminal window:
|
terminal window:
|
||||||
|
|
||||||
autoreconf -vif
|
./autogen.sh
|
||||||
cd locale
|
|
||||||
./build.py
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
The arguments to autoreconf are technically optional, but recommended.
|
|
||||||
|
|
||||||
The Python script build.py may fail on MacOS due to a missing msgfmt
|
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
|
program. msgfmt is part of gettext and the version that ships on a Mac
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo "Generating configure script..."
|
||||||
|
autoreconf -vif
|
||||||
|
echo "Done."
|
||||||
|
echo "Building locales..."
|
||||||
|
cd locale
|
||||||
|
./build.py
|
||||||
|
cd ..
|
Loading…
Reference in New Issue