diff options
author | Norbert Preining <preining@logic.at> | 2017-07-15 13:00:54 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-07-15 13:00:54 +0000 |
commit | c5a1e0d44e2bd4121dc90a8ca835f2b73760eba4 (patch) | |
tree | 2274598298940ee6c4d853543817b8ffc21f3f5e /Master/tlpkg/libexec/place | |
parent | 132eb754668558473101fb9d129a239bd31246ab (diff) |
work on supporting tlcontrib in ctan2tl
git-svn-id: svn://tug.org/texlive/trunk@44807 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec/place')
-rwxr-xr-x | Master/tlpkg/libexec/place | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/place b/Master/tlpkg/libexec/place index eb79f35bb0a..dda37b0d2c8 100755 --- a/Master/tlpkg/libexec/place +++ b/Master/tlpkg/libexec/place @@ -30,6 +30,13 @@ if ($ARGV[0] eq "-n") { } print "place: chicken mode = $chicken\n"; +my $do_contrib = 0; +if ($ARGV[0] eq "--contrib") { + $do_contrib = 1; + shift; +} + + die "usage: $0 PKGNAME\n" unless @ARGV == 1; $package = $ARGV[0]; # $::opt_verbosity = 3; # debug tlpdb reading @@ -94,6 +101,8 @@ for my $dot (@trailingdots) { # we do those checks (and possible removals) before making the new TL # package, so the "README." file doesn't get into the data structures. +die("contrib mode not implemented, move packages manually!\n") if ($do_contrib); + if (-d "Master") { # maybe have both Build and Master &xchdir ("Master"); |