| Summary: | [bug] devel/automake110:automake 110 must work with autoconf261 | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Charming Sun <snnn119> |
| Component: | Individual Port(s) | Assignee: | Ade Lovett <ade> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: freebsd-ports-bugs->ade Over to maintainer State Changed From-To: open->closed Committed, thanks! ade 2007-01-31 01:03:40 UTC
FreeBSD ports repository
Modified files:
devel/automake110 Makefile
devel/automake110/files patch-aclocal.in patch-automake.in
Log:
Fix botched patch, ensuring that automake 1.10 actually uses
autoconf 2.61 like it's supposed to.
PR: 107672
Submitted by: Charming Sun <snnn119@gmail.com>
Revision Changes Path
1.69 +1 -0 ports/devel/automake110/Makefile
1.9 +1 -1 ports/devel/automake110/files/patch-aclocal.in
1.6 +1 -1 ports/devel/automake110/files/patch-automake.in
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
|
automake 1.10 must work with autoconf 2.60 and above,the maintainer of this automake110 submit a wrong patch. Fix: in ports/devel/automake110/files replace them patch-aclocal.in:18:+ my $traces = ($ENV{AUTOM4TE} || 'autom4te259'); patch-automake.in:11:+ my $traces = ($ENV{AUTOCONF} || 'autoconf259') . " "; to patch-aclocal.in:18:+ my $traces = ($ENV{AUTOM4TE} || 'autom4te261'); patch-automake.in:11:+ my $traces = ($ENV{AUTOCONF} || 'autoconf261') . " "; How-To-Repeat: 1.install automake110,but do not clean it after make. 2.run the test suit of automake110 cd devel/automake110/work/automake-1.10/tests make check