1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Fixed reversed version order bug in GUILE_PROGS Autoconf macro.

* meta/guile.m4 (GUILE_PROGS): Build version in correct order.
This commit is contained in:
Freja Nordsiek 2017-03-14 15:14:47 +01:00 committed by Andy Wingo
parent bbc93ed910
commit 036cc149e6

View file

@ -211,8 +211,8 @@ AC_DEFUN([GUILE_PROGS],
_guile_candidates=guile
_tmp=
for v in `echo "$_guile_required_version" | tr . ' '`; do
if test -n "$_tmp"; then _tmp=.$_tmp; fi
_tmp=$v$_tmp
if test -n "$_tmp"; then _tmp=$_tmp.; fi
_tmp=$_tmp$v
_guile_candidates="guile-$_tmp guile$_tmp $_guile_candidates"
done