Commit ff94065ec0b1226252409af93a5a437a26e19d83
1 parent
3f69724e
Exists in
master
and in
5 other branches
Atualizando autogen
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
autogen.sh
| ... | ... | @@ -42,6 +42,18 @@ echo "PACKAGE_SOURCE=$PACKAGE_SOURCE" >> $out/revision |
| 42 | 42 | echo "m4_define([SVN_REVISION], $PACKAGE_REVISION)" > $out/revision.m4 |
| 43 | 43 | echo "m4_define([SVN_URL], $PACKAGE_SOURCE)" >> $out/revision.m4 |
| 44 | 44 | |
| 45 | +aclocal | |
| 46 | +if test $? != 0 ; then | |
| 47 | + echo "aclocal failed." | |
| 48 | + exit -1 | |
| 49 | +fi | |
| 50 | + | |
| 51 | +autoconf | |
| 52 | +if test $? != 0 ; then | |
| 53 | + echo "autoconf failed." | |
| 54 | + exit -1 | |
| 55 | +fi | |
| 56 | + | |
| 45 | 57 | echo "Package set to revision $PACKAGE_REVISION and source $PACKAGE_SOURCE" |
| 46 | 58 | echo "./configure to setup" |
| 47 | 59 | ... | ... |