[Fakeroot-commits] [SCM] fakeroot branch, upstream, updated. 08ed00124d8b6b445d3b91a9aa15eec638b02f05
Clint Adams
schizo at debian.org
Sun Nov 15 03:17:08 UTC 2009
The following commit has been merged in the upstream branch:
commit 17434ff9d9da6a960dc62ae864dcaeb97a69aaf7
Author: Clint Adams <schizo at debian.org>
Date: Wed Nov 2 14:54:26 2005 +0000
Patch from Yann Dirson: cope with Solaris tr. closes: #337059.
git-archimport-id: fakeroot at packages.debian.org--fakeroot/fakeroot--main--0.0--patch-91
diff --git a/configure.ac b/configure.ac
index 581b3e2..85f0477 100644
--- a/configure.ac
+++ b/configure.ac
@@ -251,10 +251,10 @@ dnl
dnl for WRAPPED in _${PRE}${FUNC}; do
dnl FOUND=$WRAPPED
if test -n "$FOUND"; then
- PF=`echo ${PRE}${FUNC}| tr '[[:lower:]]' '[[:upper:]]'`
- DEFINE_WRAP=`echo wrap_${PRE}${FUNC}| tr '[[:lower:]]' '[[:upper:]]'`
- DEFINE_NEXT=`echo wrap_${FOUND}| tr '[[:lower:]]' '[[:upper:]]'`
- DEFINE_ARG=`echo wrap_${FOUND}| tr '[[:lower:]]' '[[:upper:]]'`
+ PF=`echo ${PRE}${FUNC}| tr '[a-z]' '[A-Z]'`
+ DEFINE_WRAP=`echo wrap_${PRE}${FUNC}| tr '[a-z]' '[A-Z]'`
+ DEFINE_NEXT=`echo wrap_${FOUND}| tr '[a-z]' '[A-Z]'`
+ DEFINE_ARG=`echo wrap_${FOUND}| tr '[a-z]' '[A-Z]'`
AC_DEFINE_UNQUOTED(WRAP_${PF}, $FOUND)
AC_DEFINE_UNQUOTED(WRAP_${PF}_QUOTE, "$FOUND")
AC_DEFINE_UNQUOTED(TMP_${PF}, tmp_$FOUND)
--
fakeroot
More information about the Fakeroot-commits
mailing list