diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-03 00:18:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-03 00:18:13 +0000 |
commit | 4c3b7fe376b690fc44d2cfc015b8114d8b822580 (patch) | |
tree | 85780b12d1768e80d8f5b001f604039929a3e275 /Build/source | |
parent | 101def70d8dddc2524e192e7a0c01d3f183d04d4 (diff) |
bracket ranges to tr; from vvv for Solaris tr
git-svn-id: svn://tug.org/texlive/trunk@8502 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/texlive/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/texlive/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/texlive/ChangeLog b/Build/source/texk/texlive/ChangeLog index e1bf31e8bc6..2a57a8db169 100644 --- a/Build/source/texk/texlive/ChangeLog +++ b/Build/source/texk/texlive/ChangeLog @@ -1,3 +1,8 @@ +2008-06-03 Karl Berry <karl@tug.org> + + * Makefile.in (install-linked-scripts): call tr with '[A-Z]' '[a-z]' + instead of just A-Z. Perhaps it will be more portable. + 2008-06-01 Karl Berry <karl@tug.org> * Makefile.in (LINKED_SCRIPTS): add rungs.tlu. diff --git a/Build/source/texk/texlive/Makefile.in b/Build/source/texk/texlive/Makefile.in index 2701eafb37c..5a4cde2c56f 100644 --- a/Build/source/texk/texlive/Makefile.in +++ b/Build/source/texk/texlive/Makefile.in @@ -78,7 +78,7 @@ install-linked-scripts: # - the purpose of the case..esac is to support both multiplatform and # non-multiplatform builds. for s in $(LINKED_SCRIPTS); do \ - target=$(scriptdir)/`basename $$s | sed 's,\.[^/]*$$,,' | tr A-Z a-z`; \ + target=$(scriptdir)/`basename $$s | sed 's,\.[^/]*$$,,' | tr '[A-Z]' '[a-z]'`; \ target=$$target; \ rm -f $$target; \ case "$(scriptdir)" in \ |