| Summary: | autotools.eclass: autotools_env_setup only shows first version it tried instead of all of them | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Alon Bar-Lev (RETIRED) <alonbl> |
| Component: | Eclasses | Assignee: | Gentoo's Team for Core System packages <base-system> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
should be fixed with: http://sources.gentoo.org/eclass/autotools.eclass?r1=1.167&r2=1.168 thanks! |
should: [[ ${WANT_AUTOMAKE} == "latest" ]] && \ die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" be: [[ ${WANT_AUTOMAKE} == "latest" ]] && \ die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[@]}" to print all versions that were checked? or this is intentional?