diff options
author | Karl Berry <karl@freefriends.org> | 2011-03-11 19:49:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-03-11 19:49:37 +0000 |
commit | b8a676e6a9163cce8c8630c430b5501fe16562bd (patch) | |
tree | 0fdb621af80498818ee592239056ccb80e7e58f0 /Master/tlpkg/TeXLive | |
parent | b53c86e88b3c0020977dbc4557a1fa7c3879849e (diff) |
biber setup in build tree
git-svn-id: svn://tug.org/texlive/trunk@21690 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index 97f35efb9ba..b2f94b17c1a 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -224,10 +224,13 @@ subsequent calls just return that value. sub platform { unless (defined $::_platform_) { - if ($^O=~/^MSWin(32|64)$/i) { - $::_platform_="win32"; + if ($^O =~ /^MSWin$/i) { + $::_platform_ = "win32"; } else { - my $config_guess = "$::installerdir/tlpkg/installer/config.guess"; + # the copy of this file in biber uses a different config.guess dir. + my $config_guess_dir = $TeXLive::TLConfig::Config_Guess_Dir + || "$::installerdir/tlpkg/installer"; + my $config_guess = "$config_guess_dir/config.guess"; # We cannot rely on #! in config.guess but have to call /bin/sh # explicitly because sometimes the 'noexec' flag is set in |