Skip to content

Commit

Permalink
emit an error if the user ran autoconf instead of autoreconf
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Marlow committed Sep 16, 2006
1 parent 2661674 commit dbb439d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ dnl

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

# Hmmm, we fix the RPM release number to 1 here... Is this convenient?
Expand Down

0 comments on commit dbb439d

Please sign in to comment.