Changeset 96
- Timestamp:
- Jul 18, 2006 9:52:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/run_autotools
r90 r96 85 85 echo running aclocal in $dir 86 86 if test -d m4; then 87 aclocal -I m4 87 aclocal -I m4 || exit -1 88 88 else 89 aclocal 89 aclocal || exit -1 90 90 fi 91 91 if grep AC_CONFIG_HEADER configure.ac >/dev/null 2>&1; then 92 92 echo running autoheader in $dir 93 autoheader 93 autoheader || exit -1 94 94 fi 95 95 echo running automake in $dir 96 automake 96 automake || exit -1 97 97 echo running autoconf in $dir 98 autoconf 98 autoconf || exit -1 99 99 else 100 100 echo "*** No configure.ac file in $dir - SKIPPING! ***"
Note: See TracChangeset
for help on using the changeset viewer.