James McCoy wrote on Mon, Mar 31, 2014 at 22:38:49 -0400: > Index: configure.ac > =================================================================== > --- configure.ac (revision 1583233) > +++ configure.ac (working copy) > @@ -1306,7 +1306,7 @@ > if test -n "$RUBY"; then > AC_PATH_PROG(RUBY, "$RUBY", none) > else > - AC_PATH_PROGS(RUBY, ruby ruby1.8 ruby18 ruby1.9 ruby1 ruby1.9.3 ruby193, > none) > + AC_PATH_PROGS(RUBY, ruby ruby1.8 ruby18 ruby1.9 ruby1 ruby1.9.3 ruby193, > ruby2.0, none)
Did you mean without an extra comma? --- + AC_PATH_PROGS(RUBY, ruby ruby1.8 ruby18 ruby1.9 ruby1 ruby1.9.3 ruby193 ruby2.0, none) As it is, it breaks detection of ruby1 (finds my 1.9 without the patch but not with it). Cheers, Daniel