summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-06-04 05:18:27 +0000
committerNorbert Preining <preining@logic.at>2008-06-04 05:18:27 +0000
commitfe03090fbb044302d73f77b4c922caac9d98ef2a (patch)
tree8f30785330151ef43dde0a0ffc2a26454c3ca123 /Master
parentb20bc44b59e2c55898787ee600cec92081e6d8df (diff)
log the installer and db revision only to the logfile, and export the log function from TLUtils
git-svn-id: svn://tug.org/texlive/trunk@8534 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/install-tl6
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
2 files changed, 4 insertions, 4 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 00d0fa33f80..483f181fec6 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -44,7 +44,7 @@ BEGIN {
use Getopt::Long qw(:config no_autoabbrev);
use TeXLive::TLUtils qw(initialize_installer media platform platform_desc
- which getenv win32 unix program_exists info debug tlwarn ddebug
+ which getenv win32 unix program_exists info log debug tlwarn ddebug
get_system_tmpdir member process_logging_options
mkdirhier make_var_skeleton make_local_skeleton install_package copy
install_packages dirname setup_programs);
@@ -295,8 +295,8 @@ initialize_installer();
setup_programs("$::installerdir/tlpkg/installer", "$::_platform_");
load_tlpdb();
-info("Installer revision: $::installerrevision\n");
-info("Database revision: " . $tlpdb->config_revision . "\n");
+log("Installer revision: $::installerrevision\n");
+log("Database revision: " . $tlpdb->config_revision . "\n");
# correctly set the splitting support
# for DVD we always support splitting
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 653804e2aae..464f83d087f 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -110,7 +110,7 @@ BEGIN {
&merge_into
&process_logging_options
);
- @EXPORT = qw(setup_programs download_file info debug ddebug tlwarn process_logging_options win32);
+ @EXPORT = qw(setup_programs download_file info log debug ddebug tlwarn process_logging_options win32);
}