--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401380
13 lines
283 B
Bash
Executable file
13 lines
283 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
echo "Generating build information using autoconf"
|
|
echo "This may take a while ..."
|
|
|
|
# Regenerate configuration files
|
|
cp acinclude.m4 aclocal.m4
|
|
autoconf
|
|
# FIXME
|
|
#(cd test; aclocal; autoconf)
|
|
|
|
# Run configure for this platform
|
|
echo "Now you are ready to run ./configure"
|