summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-05-06 21:41:01 +0000
committerNorbert Preining <preining@logic.at>2009-05-06 21:41:01 +0000
commit341a7e9a79ed6a55736b82cb603ffc12b082353a (patch)
tree5ef8fefce1b00f7474dc8f962cd2fc90aea62c91
parent70858117f0b550af4b1d173f425f86077a98c85f (diff)
fix just introduced missing $ in front of target
git-svn-id: svn://tug.org/texlive/branches/branch2009-dev@12960 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 61683ef36f6..beb995035cd 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -1144,7 +1144,7 @@ sub install_package {
# one), xzdec them, and then call tar
# if we are unpacking a relocated container we adjust the target
- target .= "/$TeXLive::TLConfig::RelocTree" if $reloc;
+ $target .= "/$TeXLive::TLConfig::RelocTree" if $reloc;
my $fn = basename($what);
mkdirhier("$target/temp");