diff options
author | Norbert Preining <preining@logic.at> | 2016-04-20 07:22:06 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-04-20 07:22:06 +0000 |
commit | 0028048923e9dfa13d91019b157adcce25d0c06c (patch) | |
tree | 1be982ae13ac5e49b79b38ae8a02e30660f8596a /Master/tlpkg/TeXLive | |
parent | efc7972f97530a6e24b1751504ab9ead2487298e (diff) |
fix for spaces in names (gpg prg)
git-svn-id: svn://tug.org/texlive/trunk@40629 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index c4308c4007f..8de05ee9d75 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -3712,13 +3712,12 @@ sub setup_gpg { # ok, we found one # Set up the gpg invocation: - $::gpg = "$prg "; my $gpghome = ($ENV{'TL_GNUPGHOME'} ? $ENV{'TL_GNUPGHOME'} : "$master/tlpkg/gpg" ); $gpghome =~ s!/!\\!g if win32(); my $gpghome_quote = "\"$gpghome\""; # mind the final space for following args - $::gpg .= "--homedir $gpghome_quote "; + $::gpg = "\"$prg\" --homedir $gpghome_quote "; if ($ENV{'TL_GNUPGARGS'}) { $::gpg .= $ENV{'TL_GNUPGARGS'}; } else { |