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:
parent
bbc93ed910
commit
036cc149e6
1 changed files with 2 additions and 2 deletions
|
@ -211,8 +211,8 @@ AC_DEFUN([GUILE_PROGS],
|
||||||
_guile_candidates=guile
|
_guile_candidates=guile
|
||||||
_tmp=
|
_tmp=
|
||||||
for v in `echo "$_guile_required_version" | tr . ' '`; do
|
for v in `echo "$_guile_required_version" | tr . ' '`; do
|
||||||
if test -n "$_tmp"; then _tmp=.$_tmp; fi
|
if test -n "$_tmp"; then _tmp=$_tmp.; fi
|
||||||
_tmp=$v$_tmp
|
_tmp=$_tmp$v
|
||||||
_guile_candidates="guile-$_tmp guile$_tmp $_guile_candidates"
|
_guile_candidates="guile-$_tmp guile$_tmp $_guile_candidates"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue