diff options
author | Karl Berry <karl@freefriends.org> | 2011-06-07 15:17:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-06-07 15:17:53 +0000 |
commit | 9b55e6b31c949b720dd6b48f0d8949079ec122a0 (patch) | |
tree | c1ca76f0befb8bf77d2ba378d4202a8a2a8cae26 /Build/source/utils/biber/TeXLive | |
parent | aff7871cf4056645e1b3726b74aa8b314abb0c0f (diff) |
sync
git-svn-id: svn://tug.org/texlive/trunk@22850 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/biber/TeXLive')
-rw-r--r-- | Build/source/utils/biber/TeXLive/TLUtils.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/utils/biber/TeXLive/TLUtils.pm b/Build/source/utils/biber/TeXLive/TLUtils.pm index f9c087dfb6a..6bc850337ed 100644 --- a/Build/source/utils/biber/TeXLive/TLUtils.pm +++ b/Build/source/utils/biber/TeXLive/TLUtils.pm @@ -1,4 +1,3 @@ -# $Id: TLUtils.pm 22688 2011-05-30 19:42:46Z siepo $ # TeXLive::TLUtils.pm - the inevitable utilities for TeX Live. # Copyright 2007, 2008, 2009, 2010, 2011 Norbert Preining, Reinhard Kotucha # This file is licensed under the GNU General Public License version 2 @@ -6,7 +5,7 @@ package TeXLive::TLUtils; -my $svnrev = '$Revision: 22688 $'; +my $svnrev = '$Revision: 22842 $'; my $_modulerevision; if ($svnrev =~ m/: ([0-9]+) /) { $_modulerevision = $1; @@ -1369,7 +1368,7 @@ sub install_package { # we assume that $::progs has been set up! my $wget = $::progs{'wget'}; - my $xzdec = $::progs{'xzdec'}; + my $xzdec = "\"$::progs{'xzdec'}\""; if (!defined($wget) || !defined($xzdec)) { tlwarn("install_package: wget/xzdec programs not set up properly.\n"); return 0; @@ -3318,6 +3317,7 @@ sub check_on_working_mirror tlwarn ("check_on_working_mirror: Programs not set up, trying wget\n"); $wget = "wget"; } + $wget = "\"wget\""; # # the test is currently not completely correct, because we do not # use the LWP if it is set up for it, but I am currently too lazy |