Japanese translation of message catalog for Sawfish Window-Manager
Revisión | 5d6a97e519c95ddd09c1d45d9b43384b1bd737f3 (tree) |
---|---|
Tiempo | 2016-01-18 04:01:37 |
Autor | Christopher Roy Bratusek <nano@jpbe...> |
Commiter | Christopher Roy Bratusek |
fix libtool version check in autogen.sh
@@ -12,14 +12,14 @@ if [ -d m4 ]; then | ||
12 | 12 | rm -fv m4/* |
13 | 13 | fi |
14 | 14 | |
15 | -if [ -f configure.in ]; then | |
16 | - if grep "AC_CONFIG_HEADER" configure.in >/dev/null; then | |
15 | +if [ -f configure.ac ]; then | |
16 | + if grep "AC_CONFIG_HEADER" configure.ac >/dev/null; then | |
17 | 17 | echo "Running autoheader" |
18 | 18 | autoheader || exit 1 |
19 | 19 | fi |
20 | - if grep "AM_PROG_LIBTOOL" configure.in >/dev/null; then | |
20 | + if grep "AM_PROG_LIBTOOL" configure.ac >/dev/null; then | |
21 | 21 | echo "Running libtoolize" |
22 | - lver=$(libtool --version | grep 1.5) | |
22 | + lver=$(libtoolize --version | grep 1.5) | |
23 | 23 | if [ "x${lver}" != "x" ]; then |
24 | 24 | libtoolize --force --copy || exit 1 |
25 | 25 | else libtoolize --force --copy --install || exit 1 |