~bzr/ubuntu/jaunty/debhelper/builddeps-ppa

« back to all changes in this revision

Viewing changes to dh_auto_install

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2008-06-28 00:41:46 UTC
  • Revision ID: james.westby@ubuntu.com-20080628004146-4rksa4v2y1xiuq7f
Tags: 7.0.13ubuntu1
* Merge from Debian unstable, remaining changes:
  - autoscripts/postinst-scrollkeeper: Do not show scrollkeeper-update
    output.
  - dh_installudev: Use priority 50 by default (instead of z60) and '-'
    separator (instead of '_').
  - dh_installxfonts: Use versioned dependency for xfonts-utils. This should
    be kept until dapper goes out of support, to avoid broken dapper
    backports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
set). If there is a setup.py or Build.PL, it is used.
23
23
 
24
24
The files are installed into debian/<package>/ if there is only one binary
25
 
package to act on. In the multiple binary package case, the files are
26
 
instead installed into debian/tmp/, and should be moved from there to the
 
25
package. In the multiple binary package case, the files are instead
 
26
installed into debian/tmp/, and should be moved from there to the
27
27
appropriate package build directory using L<dh_install(1)> or
28
28
L<dh_movefiles(1)>.
29
29
 
51
51
init();
52
52
 
53
53
my $destdir;
54
 
if (@{$dh{DOPACKAGES}} > 1) {
 
54
my @allpackages=getpackages();
 
55
if (@allpackages > 1) {
55
56
        $destdir="debian/tmp";
56
57
}
57
58
else {