You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
244 B
13 lines
244 B
#!/bin/sh
|
|
# Script for regenerating all autogenerated files.
|
|
|
|
autopoint -f # was: gettextize -f -c
|
|
cp po/Makefile.in.in src/po
|
|
cp po/remove-potcdate.sin src/po
|
|
rm -fR po
|
|
|
|
aclocal -I m4
|
|
autoconf
|
|
autoheader
|
|
libtoolize -c -f
|
|
automake -a -c
|