~ubuntu-branches/ubuntu/karmic/glibmm2.4/karmic

« back to all changes in this revision

Viewing changes to docs/doc-install.pl

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-22 11:12:24 UTC
  • mfrom: (1.2.41 upstream)
  • Revision ID: james.westby@ubuntu.com-20090922111224-p1r8bxw835x23l07
Tags: 2.22.1-0ubuntu1
* New upstream release (LP: #434371)
  - Fix KeyFile build with exceptions disabled
  - Re-enable input file line markers in gmmproc
  - Fix broken test for empty _WRAP_METHOD argument
  - Allow the C documentation to be overridden
  - Slightly clean up gross Perl code in gmmproc.in
  - Correctly quote the extracted comment for M4
  - Enable verbose output of autoreconf
  - Do not complain about missing docs_override.xml
  - Support Automake silent rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
use strict;
21
21
use warnings;
22
22
use bytes;
 
23
use File::Glob qw(:glob);
23
24
use File::Spec;
24
25
use Getopt::Long qw(:config no_getopt_compat no_ignore_case require_order bundling);
25
26
 
201
202
}
202
203
error('No target directory specified') unless (defined($target_dir) and $target_dir ne '');
203
204
 
204
 
@ARGV = map(glob, @ARGV) if ($expand_glob);
 
205
@ARGV = map(bsd_glob($_, GLOB_NOSORT), @ARGV) if ($expand_glob);
205
206
my %basename_hash = ();
206
207
 
207
208
foreach my $in_name (@ARGV)