Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| #! /bin/sh | |
| set -e | |
| # Use this script to bootstrap your build AFTER checking it out from | |
| # source control. You should not have to use it for anything else. | |
| # Runs autoconf, autoheader, aclocal, automake, autopoint, libtoolize | |
| echo | |
| echo "Regenerating autotools files ..." | |
| aclocal \ | |
| && autoheader \ | |
| && automake --add-missing \ | |
| && autoconf | |
| echo "... done. Now please do the following:" | |
| echo | |
| echo " cd build; sudo ../configure; sudo make; sudo make install" | |
| echo |