From: Daniel Stenberg Date: Wed, 31 Dec 2008 20:35:46 +0000 (+0000) Subject: - Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing X-Git-Tag: upstream/7.37.1~6647 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2215a9a1816f8ed240aa96bf938a22f2128a7603;p=platform%2Fupstream%2Fcurl.git - Bas Mevissen reported curl.haxx.se/bug/view.cgi?id=2479030 pointing out that 'reconf' didn't properly point out the m4 subdirectory when running aclocal. --- diff --git a/CHANGES b/CHANGES index e5b46ec..045e3f4 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,11 @@ Changelog +Daniel Stenberg (31 Dec 2008) +- 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. + Daniel Stenberg (29 Dec 2008) - Phil Lisiecki filed bug report #2413067 (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that diff --git a/reconf b/reconf index 39405b0..43e55cd 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"