mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-08-04 02:06:29 -04:00
20 lines
406 B
Bash
Executable File
20 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Using autotools versions:"
|
|
if [[ -e /usr/bin/autoconf-2.5x && -e /usr/bin/automake-1.7 ]]
|
|
then
|
|
autoconf-2.5x --version | grep autoconf
|
|
automake-1.7 --version | grep automake
|
|
aclocal-1.7 -I config
|
|
autoconf-2.5x
|
|
autoheader-2.5x
|
|
automake-1.7 -a
|
|
else
|
|
autoconf --version | grep autoconf
|
|
automake --version | grep automake
|
|
aclocal -I config
|
|
autoconf
|
|
autoheader
|
|
automake -a
|
|
fi
|