~ubuntu-branches/ubuntu/utopic/sbuild/utopic

« back to all changes in this revision

Viewing changes to bin/sbuild

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-06-23 22:27:58 UTC
  • mfrom: (8.1.24) (3.3.23 sid)
  • Revision ID: package-import@ubuntu.com-20120623222758-48ljspppdh7xzu9i
Tags: 0.63.1-1ubuntu1
* Resynchronize with Debian testing. Remaining changes:
  - debian/patches/do-not-install-debfoster-into-chroots.patch:
    do not install debfoster into the chroots because it is in universe and
    not needed for package building itself.
  - debian/patches/run-pre-build-hooks-as-root.patch:
    run pre-build hooks as root
* Drop run-lintian-inside-chroot.patch: It hasn't been picked up
  by Debian and doesn't work quite right (LP: #940410)

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
            if $conf->get('DEBUG');
98
98
        print "Selected chroot " . $conf->get('CHROOT') . "\n"
99
99
            if $conf->get('DEBUG') and defined $conf->get('CHROOT');
100
 
        print "Selected architecture " . $conf->get('ARCH') . "\n"
101
 
            if $conf->get('DEBUG' && defined($conf->get('ARCH')));
 
100
        print "Selected host architecture " . $conf->get('HOST_ARCH') . "\n"
 
101
            if $conf->get('DEBUG' && defined($conf->get('HOST_ARCH')));
 
102
        print "Selected build architecture " . $conf->get('BUILD_ARCH') . "\n"
 
103
            if $conf->get('DEBUG' && defined($conf->get('BUILD_ARCH')));
102
104
 
103
105
        $job = Sbuild::Build->new($jobname, $conf);
104
106
        $job->set('Pkg Status Trigger', \&status_trigger);