~ubuntu-branches/ubuntu/breezy/debhelper/breezy

« back to all changes in this revision

Viewing changes to dh_install

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-08-09 11:24:26 UTC
  • mfrom: (1.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050809112426-hsb52zeg48wl4ffd
Tags: 4.9.5ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
                if (! defined $dh{AUTODEST} && @$set > 1) {
139
139
                        $dest=pop @$set;
140
140
                }
141
 
                # glob now, relative to srcdir
 
141
                if (! compat(4)) { # check added in v5
 
142
                        # glob now, relative to srcdir
 
143
                        if (! map { glob "$srcdir/$_" } @$set) {
 
144
                                error("missing files (@$set), aborting");
 
145
                        }
 
146
                }
142
147
                foreach my $src (map { glob "$srcdir/$_" } @$set) { 
143
148
                        next if excludefile($src);
144
149
                
229
234
 
230
235
While debian/libfoo.install contains:
231
236
 
232
 
  usr/libfoo*.so.*
 
237
  usr/lib/libfoo*.so.*
233
238
 
234
239
If you want a libfoo-dev package too, debian/libfoo-dev.install might contain:
235
240