Boost logo

Boost :

From: Jonathan Wakely (cow_at_[hidden])
Date: 2005-01-12 17:35:21


On Wed, Jan 12, 2005 at 09:49:46PM +0000, Timo Geusch wrote:

> The attached patch to boost_1_32_0/libs/config/tools/configure.in fixes
> that problem for the price of dumbing down the tr invocation.

- namespace=`echo $macroname | tr [[:upper:]] [[:lower:]]`
+ namespace=`echo $macroname | tr [[A-Z]] [[a-z]]`

should that be this instead?
+ namespace=`echo $macroname | tr [A-Z] [a-z]`
or even
+ namespace=`echo $macroname | tr '[A-Z]' '[a-z]'`

jon

-- 
"I find television very educating. Every time somebody turns on the set, 
 I go into the other room and read a book."
	- Groucho Marx

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk