12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #! /bin/sh
- . test-init.sh
- st=0
- if test -d "$am_top_srcdir"/.git; then
-
- (cd "$am_top_srcdir" && git log -1) || st=1
- elif test -f "$am_top_srcdir"/ChangeLog; then
-
- awk '
- BEGIN { first = 1 }
- (first == 1) { print; first = 0; next; }
- /^[^\t]/ { exit(0); }
- { print }
- ' "$am_top_srcdir"/ChangeLog || st=1
- else
-
-
-
- warn_ "no .git directory nor ChangeLog file found, some info won't" \
- "be available"
- fi
- $PERL -V || st=1
- $PERL -e 'use TAP::Parser; print $TAP::Parser::VERSION, "\n"' || :
- $LEX --version || :
- $LEX --help || :
- $YACC --version || :
- $YACC --help || :
- cat "$am_top_builddir/config.log" || st=1
- cat "$am_top_builddir/t/wrap/aclocal-$APIVERSION" || st=1
- cat "$am_top_builddir/t/wrap/automake-$APIVERSION" || st=1
- if test $st -eq 0; then
-
-
-
- exit 77
- fi
- exit 99
|