diff options
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 \ |