diff options
author | Karl Berry <karl@freefriends.org> | 2009-06-20 18:05:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-06-20 18:05:18 +0000 |
commit | 918ce26636e564581c1b57aa86da29730c0b86d5 (patch) | |
tree | 04db4941e7229f63d69eaaf831a69a54b0f44760 | |
parent | 05754612d093a4b5f87755c103ef063089b99a83 (diff) |
minor docs, error msgs
git-svn-id: svn://tug.org/texlive/trunk@13840 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Build/source/Build | 3 | ||||
-rw-r--r-- | Build/source/ChangeLog | 5 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLTREE.pm | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 3 |
4 files changed, 10 insertions, 3 deletions
diff --git a/Build/source/Build b/Build/source/Build index 4d1a53b1fd7..5c458f2b547 100755 --- a/Build/source/Build +++ b/Build/source/Build @@ -80,7 +80,8 @@ cd $TL_WORKDIR || exit 1 # allow override of xdvi toolkit, default to standard xaw. : ${TL_CONF_XDVI_TOOLKIT=--with-xdvi-x-toolkit=xaw} -# allow adding arbitrary other configure args. +# allow adding arbitrary other configure args, such as +# --with-tex-banner='TeX Live 2009/SomeDistro'. : ${TL_CONFIGURE_ARGS=} # allow override of make target. diff --git a/Build/source/ChangeLog b/Build/source/ChangeLog index 9a9de9ef3d8..d6cfff8f046 100644 --- a/Build/source/ChangeLog +++ b/Build/source/ChangeLog @@ -1,3 +1,8 @@ +2009-06-18 Karl Berry <karl@tug.org> + + * Build: eradicate -Wdecl stuff, peb has implemented something + more general. + 2009-06-01 Karl Berry <karl@tug.org> * Makefile.am (world): don't echo the echo. diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm index ccb67ae6a5f..d0897d20885 100644 --- a/Master/tlpkg/TeXLive/TLTREE.pm +++ b/Master/tlpkg/TeXLive/TLTREE.pm @@ -215,7 +215,7 @@ sub _get_matching_files { } elsif ($pattype eq "d") { @matchfiles = $self->files_under_path($patdata); } else { - die "Unknown pattern $p"; + die "Unknown pattern pattern type `$pattype' in $p"; } ddebug("p=$p; matchfiles=@matchfiles\n"); return @matchfiles; diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index 318e69956cd..79b04a3c605 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -1,6 +1,6 @@ #!/usr/bin/env perl # $Id$ -# Copyright 2008 TeX Users Group. +# Copyright 2008, 2009 TeX Users Group. # This file is licensed under the GNU General Public License version 2 # or any later version. # @@ -101,6 +101,7 @@ sub check_w32 next if $target =~ /simpdftex/; # shell script next if $target =~ /tex4ht/; # tex4ht has its own .bat's next if $target =~ /tlmgr/; # does things its own way + next if $target =~ /xasy/; # no need #print "$k -> $uw{$k}\n"; $diff += system ("cmp $w32dir/$k.bat $w32canonical"); } |