summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-xMaster/tlpkg/bin/tl-update-tlnet2
-rwxr-xr-xMaster/tlpkg/bin/tl-update-tlpdb3
-rwxr-xr-xMaster/tlpkg/bin/tlpsrc2tlpdb3
3 files changed, 5 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet
index ca36dfc7633..33e2056945e 100755
--- a/Master/tlpkg/bin/tl-update-tlnet
+++ b/Master/tlpkg/bin/tl-update-tlnet
@@ -111,7 +111,7 @@ option_doc 1
option_fmt 1
option_letter 0
option_src 1
-option_symlinks 0
+option_path 0
" >texlive.profile
echo "$0: Running test install (log: `pwd`/install.log)..."
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb
index d3ccd808146..9b6b5c3c2eb 100755
--- a/Master/tlpkg/bin/tl-update-tlpdb
+++ b/Master/tlpkg/bin/tl-update-tlpdb
@@ -186,7 +186,8 @@ sub create_tlpdb
}
$tldb->root ($opt_master);
# do set the option_archs from the dirs in Master/bin
- $tldb->option_available_architectures ($tltree->architectures);
+ my @archs = $tltree->architectures;
+ $tldb->setting("available_architectures", @archs);
return($tldb, $src_count);
}
diff --git a/Master/tlpkg/bin/tlpsrc2tlpdb b/Master/tlpkg/bin/tlpsrc2tlpdb
index 370aa0bbc9f..59643fc2273 100755
--- a/Master/tlpkg/bin/tlpsrc2tlpdb
+++ b/Master/tlpkg/bin/tlpsrc2tlpdb
@@ -134,7 +134,8 @@ sub main
if ($opt_all) {
$tldb->root ($opt_master);
# do set the option_archs from the dirs in Master/bin
- $tldb->option_available_architectures ($tltree->architectures);
+ my @archs = $tltree->architectures;
+ $tldb->setting("available_architectures", @archs);
$tldb->save;
info ("$0: wrote $src_count packages to ". $tldb->root . ".\n");
} else {