• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revision5d6a97e519c95ddd09c1d45d9b43384b1bd737f3 (tree)
Time2016-01-18 04:01:37
AuthorChristopher Roy Bratusek <nano@jpbe...>
CommiterChristopher Roy Bratusek

Log Message

fix libtool version check in autogen.sh

Change Summary

Incremental Difference

--- a/autogen.sh
+++ b/autogen.sh
@@ -12,14 +12,14 @@ if [ -d m4 ]; then
1212 rm -fv m4/*
1313 fi
1414
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
1717 echo "Running autoheader"
1818 autoheader || exit 1
1919 fi
20- if grep "AM_PROG_LIBTOOL" configure.in >/dev/null; then
20+ if grep "AM_PROG_LIBTOOL" configure.ac >/dev/null; then
2121 echo "Running libtoolize"
22- lver=$(libtool --version | grep 1.5)
22+ lver=$(libtoolize --version | grep 1.5)
2323 if [ "x${lver}" != "x" ]; then
2424 libtoolize --force --copy || exit 1
2525 else libtoolize --force --copy --install || exit 1