diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-01-27 23:12:26 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-01-27 23:12:26 +0000 |
commit | d1ab8e2441ec33ec2200dd8b22f30b7802967a3b (patch) | |
tree | 0b021d877f63784cd518f46081e330ad840a9103 | |
parent | 1833c974cfbb8a660249f0fa3240a83274666e47 (diff) |
Use POSIX compatible tr arguments in autogen.sh
From sbh, r7038 in trunk
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.13.0-fixes@7172 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 44fe928d5..7629b98c1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,7 +42,7 @@ versioned_bins () for c in autoconf autoheader automake aclocal do - uc=`echo $c | tr a-z A-Z` + uc=`echo $c | tr '[:lower:]' '[:upper:]'` eval "val=`echo '$'$uc`" if test -n "$val" then |