diff options
author | Karl Berry <karl@freefriends.org> | 2007-03-19 21:58:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-03-19 21:58:02 +0000 |
commit | 548ea7d9edc3ac71a41545185743d80961a5064f (patch) | |
tree | 657d5668a9025698cf7db7a666fb3381aa25f1d1 /Master/common.sh | |
parent | 0f7250f01fbe6e166b0c0d586030ca45ef510926 (diff) |
(fix_texmf): missing x -> always replace current
$HOME -> loses when $HOME is /. Bug report from Jean-Pierre Chretien.
git-svn-id: svn://tug.org/texlive/trunk@4064 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/common.sh')
-rwxr-xr-x | Master/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/common.sh b/Master/common.sh index 4fc542672d3..b30f6823d4d 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -346,7 +346,7 @@ TEXMFCNF__fix_texmf() rm .sed_tmp.$$ # # the TEXMFHOME tree - if test "x$TEXMFHOME" != '$HOME/texmf'; then + if test "x$TEXMFHOME" != x'$HOME/texmf'; then # if the variable starts with the explicit home of the current user # (as in "/u/karl") replace that with the string '$HOME' as the # explicit home of the current user is unlikely to ever be right. |