aboutsummaryrefslogtreecommitdiff
path: root/reconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-12-31 20:35:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-12-31 20:35:46 +0000
commit2215a9a1816f8ed240aa96bf938a22f2128a7603 (patch)
tree0812e42ffcf4e1c2e7a9714ab49a776c5c0a1cec /reconf
parentaa32f61ce72bb9f9c6012132c51688c20a9d0eb5 (diff)
- Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing
out that 'reconf' didn't properly point out the m4 subdirectory when running aclocal.
Diffstat (limited to 'reconf')
-rwxr-xr-xreconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/reconf b/reconf
index 39405b006..43e55cdb5 100755
--- a/reconf
+++ b/reconf
@@ -9,7 +9,7 @@ die(){
echo "$@" ; exit
}
-aclocal -I . || die "The command 'aclocal -I .' failed"
+aclocal -I . -I m4 || die "The command 'aclocal -I . -I m4' failed"
autoheader || die "The command 'autoheader' failed"
automake || die "The command 'automake' failed"
autoconf || die "The command 'autoconf' failed"