mirror of
https://github.com/anope/anope.git
synced 2026-06-25 03:46:36 +02:00
d6bb55476c
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1876 5417fbe8-f217-4b02-8779-1006273d7864
14 lines
248 B
Bash
Executable File
14 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Generating build information using aclocal, autoheader, automake and autoconf."
|
|
echo
|
|
|
|
# Regerate configuration files
|
|
aclocal
|
|
autoheader
|
|
automake --gnu --add-missing --copy
|
|
autoconf
|
|
|
|
echo
|
|
echo "Now you are ready to run ./configure"
|