Skip to content
Snippets Groups Projects
Commit dbb439db authored by Simon Marlow's avatar Simon Marlow
Browse files

emit an error if the user ran autoconf instead of autoreconf

parent 26616741
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,11 @@ dnl ...@@ -15,6 +15,11 @@ dnl
AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.5], [glasgow-haskell-bugs@haskell.org], [ghc]) AC_INIT([The Glorious Glasgow Haskell Compilation System], [6.5], [glasgow-haskell-bugs@haskell.org], [ghc])
if test ! -f mk/config.h.in; then
echo "mk/config.h.in doesn't exist: perhaps you haven't run 'autoreconf'?"
exit 1
fi
FP_SETUP_PROJECT_VERSION FP_SETUP_PROJECT_VERSION
# Hmmm, we fix the RPM release number to 1 here... Is this convenient? # Hmmm, we fix the RPM release number to 1 here... Is this convenient?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment