diff options
author | Karl Berry <karl@freefriends.org> | 2013-04-10 18:39:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-04-10 18:39:51 +0000 |
commit | 3031532ab8baefbd57747dffc90cf9abafa218e3 (patch) | |
tree | a740571999bd9310b91c69ed223af07505335b55 /Master/tlpkg/bin | |
parent | 4cce1c3d3080f4fcbeb91f8443806efeeb77be36 (diff) |
include tlpkg dev sources in eventual release, as source/texlive*devsource
git-svn-id: svn://tug.org/texlive/trunk@29829 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 13 |
2 files changed, 11 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 1477301ad03..1c96ba824f9 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -156,6 +156,8 @@ for tlname in $tlnames; do default_bin_loc=/home/tschmitz/powerpc.tar.bz2;; sparc-linux) default_bin_loc=/home/karl/s.tgz;; + sparc-solaris) + default_bin_loc=/home/karl/ss.tgz;; universal-darwin) download_loc=$tmpdir/tl.$tlname.tar.xz default_bin_loc=$download_loc diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index a17d4bc17d8..aacf2c54b63 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -136,9 +136,9 @@ MAKEINST () # Make the tar files: the sources, the texmf trees, the binaries, the # minor "extra" files. Each should unpack into its directory name. We # use the GNU tar --transform option to avoid copying the whole -# hierarchy to temp directory. This auxiliary function takes that -# directory name as its first argument, and the files to archive as the -# rest. +# hierarchy to a temp directory. This auxiliary function takes that +# temp directory name as its first argument, and the files to archive as +# the rest. # do_tar () { @@ -182,7 +182,7 @@ MAKETAR () fi if $tar_source_only || $tar_all; then - cd $master/../Build/source || exit + cd $master/../Build/source || exit 1 do_tar $NAME-$D-source * $tar_source_only && return fi @@ -194,6 +194,11 @@ MAKETAR () cd $master || exit 1 do_tar $NAME-$D-texmf texmf* + + # one more unusual case: the development sources, which we record in + # the 00texlive.image (fake) package; see its .tlpsrc. + cd $master || exit 1 + do_tar $NAME-$D-devsource `tlpfiles 00texlive.image` } |