-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
#!/bin/sh | ||
# | ||
echo "Generating build information using autoreconf" | ||
echo "Generating build information using autoconf" | ||
echo "This may take a while ..." | ||
|
||
# All is done by autoreconf | ||
autoreconf -f -i | ||
# Touch the timestamps on all the files since CVS messes them up | ||
touch configure.ac | ||
|
||
# Regenerate configuration files | ||
# Note that we cannot use autoreconf because it won't call automake | ||
# to add missing files, because we don't use automake | ||
aclocal | ||
automake --add-missing --force-missing 2>/dev/null | ||
autoconf | ||
autoheader && touch advance/lib/config.hin | ||
|
||
# Run configure for this platform | ||
echo "Now you are ready to run ./configure" | ||
|