From 4c3b7fe376b690fc44d2cfc015b8114d8b822580 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 3 Jun 2008 00:18:13 +0000 Subject: bracket ranges to tr; from vvv for Solaris tr git-svn-id: svn://tug.org/texlive/trunk@8502 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/texlive/ChangeLog | 5 +++++ Build/source/texk/texlive/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * 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 * 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 \ -- cgit v1.2.3