Hi Bruno, * Bruno Haible wrote on Sat, Apr 26, 2008 at 02:15:27PM CEST: > 2008-04-26 Bruno Haible <[EMAIL PROTECTED]> > > * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program > on Solaris. > * tests/test-xstrtoimax.sh: Likewise. > * tests/test-xstrtoumax.sh: Likewise. > Reported by Ralf Wildenhues <[EMAIL PROTECTED]>. >
> + # Find out how to remove carriage returns from output. Solaris /usr/ucb/tr > + # does not understand '\r'. > + if echo solaris | tr -d '\r' | grep solais > /dev/null; then s/solais/solaris/ Likewise in the other files. > + cr='\015' > + else > + cr='\r' > + fi > +