diff options
author | Norbert Preining <preining@logic.at> | 2008-10-01 23:12:39 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-01 23:12:39 +0000 |
commit | ffb53120e797221d41a46658ddbddfbac6cf3f9d (patch) | |
tree | dc4d3b0650460b2d0ee2656aa519a5ef2472de0a /Master | |
parent | e758d5db577a87bfb7544b1b53f0221bfc928498 (diff) |
--really-no-depends => --no-depends-at-all
git-svn-id: svn://tug.org/texlive/trunk@10817 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index b79b78e04d6..05c48a94656 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -316,7 +316,7 @@ sub remove_package { # if some of them are referenced somewhere they will not be removed # unless --force given # -# tlmgr remove --really-no-depends foo bar baz +# tlmgr remove --no-depends-at-all foo bar baz # willabsolutely only install foo bar baz not even taking .ARCH into # account # @@ -346,7 +346,7 @@ sub action_remove { my $opt_dry = 0; Getopt::Long::Configure(qw(no_pass_through)); GetOptions("no-depends" => \$opt_nodepends, - "really-no-depends" => \$opt_reallynodepends, + "no-depends-at-all" => \$opt_reallynodepends, "force" => \$opt_force, "dry-run" => \$opt_dry) or pod2usage(2); $opt_nodepends = 1 if $opt_reallynodepends; @@ -633,7 +633,7 @@ sub action_backup { # as above, but will not check for depends of Collections/Schemes # but it will still update .ARCH deps # -# tlmgr update --really-no-depends foo +# tlmgr update --no-depends-at-all foo # will absolutely only update foo not even taking .ARCH into account # # TLMedia->install_package does ONLY INSTALL ONE PACKAGE, no deps whatsoever @@ -653,7 +653,7 @@ sub action_update { my $opt_backupdir; Getopt::Long::Configure(qw(no_pass_through)); GetOptions("no-depends" => \$opt_nodepends, - "really-no-depends" => \$opt_reallynodepends, + "no-depends-at-all" => \$opt_reallynodepends, "all" => \$opt_all, "list" => \$opt_list, "no-remove" => \$opt_noremove, @@ -945,7 +945,7 @@ EOF # will *only* install these three packages (if they are not already installed # but it will STILL INSTALL foo.ARCH if they are necessary!! # -# tlmgr install --really-no-depends foo bar baz +# tlmgr install --no-depends-at-all foo bar baz # will absolutely only install these three packages, and will not even # take .ARCH deps into account # @@ -974,7 +974,7 @@ sub action_install { my $opt_reinstall = 0; Getopt::Long::Configure(qw(no_pass_through)); GetOptions("no-depends" => \$opt_nodepends, - "really-no-depends" => \$opt_reallynodepends, + "no-depends-at-all" => \$opt_reallynodepends, "reinstall" => \$opt_reinstall, "dry-run" => \$opt_dry) or pod2usage(2); my %ret; @@ -1780,7 +1780,7 @@ only dependencies on normal packages (not of category Scheme or Collection). Do not install dependencies. (By default, installing a package ensures that all dependencies of this package are fulfilled.) -=item B<--really-no-depends> +=item B<--no-depends-at-all> When you install a package which ships binary files the respective binary package will also be installed. (So for package bin-foobar also the package @@ -1846,7 +1846,7 @@ If you call for updating a package normally all depending packages will also be checked for updates and updated if necessary. This switch supresses this behaviour. -=item B<--really-no-depends> +=item B<--no-depends-at-all> When you update a package which ships binary files the respective binary package will also be updated. (So for package bin-foobar also the package @@ -1925,7 +1925,7 @@ package, dependencies are never removed. Options: Do not remove dependent packages. -=item B<--really-no-depends> +=item B<--no-depends-at-all> When you remove a package which ships binary files the respective binary package will also be removed. (So for package bin-foobar also the package |