mirror of
https://github.com/curl/curl.git
synced 2025-09-29 23:46:47 +03:00
- 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.
This commit is contained in:
parent
aa32f61ce7
commit
2215a9a181
5
CHANGES
5
CHANGES
|
@ -6,6 +6,11 @@
|
||||||
|
|
||||||
Changelog
|
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)
|
Daniel Stenberg (29 Dec 2008)
|
||||||
- Phil Lisiecki filed bug report #2413067
|
- Phil Lisiecki filed bug report #2413067
|
||||||
(http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that
|
(http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that
|
||||||
|
|
2
reconf
2
reconf
|
@ -9,7 +9,7 @@ die(){
|
||||||
echo "$@" ; exit
|
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"
|
autoheader || die "The command 'autoheader' failed"
|
||||||
automake || die "The command 'automake' failed"
|
automake || die "The command 'automake' failed"
|
||||||
autoconf || die "The command 'autoconf' failed"
|
autoconf || die "The command 'autoconf' failed"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user