commit: 128dff66839fcc5d02bd2b61592eec486919e404
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 07:52:37 2022 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 07:52:37 2022 +0000
URL:
https://gitweb.gentoo.org/proj/autotools-wrappers.git/commit/?id=128dff66
autoconf-wrapper: export WANT_AUTOCONF to the full version
When exporting the WANT_AUTOCONF version based on what we picked, use
the full version instead of the short 2.1 or 2.5 values since they may
expand into an unrelated version (since we accept many versions as an
alias to 2.5). Practically speaking, there shouldn't be a difference,
but this will make things a bit more clear.
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
ac-wrapper.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ac-wrapper.sh b/ac-wrapper.sh
index ca23928..6cb436b 100755
--- a/ac-wrapper.sh
+++ b/ac-wrapper.sh
@@ -183,9 +183,8 @@ fi
if [ -z "${WANT_AUTOCONF}" ] ; then
for v in ${vers} ; do
auto_ver=${v%:*}
- want_ver=${v#*:}
if [ "${binary}" = "${full_argv0}-${auto_ver}" ] ; then
- export WANT_AUTOCONF="${want_ver}"
+ export WANT_AUTOCONF="${auto_ver}"
break
fi
done