diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-06-22 11:11:14 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-06-22 11:11:14 +0000 |
commit | e013e2cc43e905ba8004b9f597be317fc19bb346 (patch) | |
tree | 7372d2ff5f685eed311936fc7632a27876bab039 /Master/tlpkg/bin/ctan2tl | |
parent | 37efdf11a95708cbd74b4eed1d4364477270fdb4 (diff) |
rm bashism with export in ctan2tl
git-svn-id: svn://tug.org/texlive/trunk@8929 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/ctan2tl')
-rwxr-xr-x | Master/tlpkg/bin/ctan2tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/ctan2tl b/Master/tlpkg/bin/ctan2tl index bb120442e62..ea200c8e17c 100755 --- a/Master/tlpkg/bin/ctan2tl +++ b/Master/tlpkg/bin/ctan2tl @@ -5,7 +5,7 @@ # Attempt to push a package from CTAN into TL. unset CDPATH # avoid extraneous output -export LC_ALL=C # avoid problems with diff, comm, etc +LC_ALL=C; export LC_ALL # avoid problems with diff, comm, etc mydir=`cd \`dirname $0\` && pwd` # Master/tlpkg/bin PATH=$mydir:$PATH # we call lots of our other tools |