On 10/05/2010 08:13 AM, Eric Blake wrote:
@@ -351,7 +351,7 @@ check_versions() {
app=libtoolize
fi
# Honor $APP variables ($TAR, $AUTOCONF, etc.)
- appvar=`echo $app | tr '[a-z]' '[A-Z]'`
+ appvar=`echo $app | tr '-a-z' '_A-Z'`
Actually, 'tr -- -a-z _A-Z' is not universally supported, and leading dash caused a failure; so after better testing, I'm actually pushing:
tr 'a-z-' 'A-Z_' -- Eric Blake [email protected] +1-801-349-2682 Libvirt virtualization library http://libvirt.org
