projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2661674
)
emit an error if the user ran autoconf instead of autoreconf
author
Simon Marlow
<simonmar@microsoft.com>
Sat, 16 Sep 2006 08:42:05 +0000
(08:42 +0000)
committer
Simon Marlow
<simonmar@microsoft.com>
Sat, 16 Sep 2006 08:42:05 +0000
(08:42 +0000)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
042f33b
..
3b6cc97
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-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?