Skip to content

Commit

Permalink
Merge pull request #3108 from masatake/print-tools-version
Browse files Browse the repository at this point in the history
build-sys: print versions of the tools used in autogen.sh
  • Loading branch information
masatake committed Aug 11, 2021
2 parents b537b4f + 540402b commit 41d7384
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

# Report the paths causing trouble frequently
echo '##################################################################'
echo '# The paths for tools #'
echo '# The paths and versions for tools #'
echo '##################################################################'
for t in autoreconf aclocal pkg-config; do
type $t
for t in autoreconf aclocal pkg-config autoconf automake; do
if type $t; then
echo '------------------------------------------------------------------'
$t --version
fi
echo '##################################################################'
done

echo '# Generating files #'
echo '##################################################################'

set -e # errexit (exit on error)
Expand Down

0 comments on commit 41d7384

Please sign in to comment.