+2009-08-30 Bruno Haible <bruno@clisp.org>
+
+ * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
+ /usr/xpg4/bin/tr when it exists.
+ * tests/test-pipe-filter-gi1.sh: Likewise.
+
2009-08-30 Bruno Haible <bruno@clisp.org>
Work around deficient /usr/bin/id program on Solaris.
# Find a 'tr' program that supports character ranges in the POSIX syntax.
# Solaris /usr/bin/tr does not.
-if test -f /usr/xpg4/bin/tr; then
- TR=/usr/xpg4/bin/tr
+if test -f /usr/xpg6/bin/tr; then
+ TR=/usr/xpg6/bin/tr
else
- TR=tr
+ if test -f /usr/xpg4/bin/tr; then
+ TR=/usr/xpg4/bin/tr
+ else
+ TR=tr
+ fi
fi
# A small file.
# Find a 'tr' program that supports character ranges in the POSIX syntax.
# Solaris /usr/bin/tr does not.
-if test -f /usr/xpg4/bin/tr; then
- TR=/usr/xpg4/bin/tr
+if test -f /usr/xpg6/bin/tr; then
+ TR=/usr/xpg6/bin/tr
else
- TR=tr
+ if test -f /usr/xpg4/bin/tr; then
+ TR=/usr/xpg4/bin/tr
+ else
+ TR=tr
+ fi
fi
# A small file.