~ubuntu-branches/ubuntu/lucid/debhelper/lucid

« back to all changes in this revision

Viewing changes to Debian/Debhelper/Buildsystem/ant.pm

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy), أحمد المحمودي (Ahmed El-Mahmoudy), Daniel Holbach
  • Date: 2009-12-16 09:01:54 UTC
  • mfrom: (1.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20091216090154-4qtf6jm09jtbsnfg
Tags: 7.4.10ubuntu1
[ أحمد المحمودي (Ahmed El-Mahmoudy) ]
* Merge with Debian unstable (LP: #485956). Remaining Ubuntu changes:
  - dh_installinit: Add --upstart-only and --onlyscripts-upstart modes.
  - Add various autoscripts for above: postinst-upstart,
    postinst-upstart-replace, postinst-upstart-restart,
    prerm-upstart, prerm-upstart-norestart, preinst-removeconffile.
  - dh_installudev: Handle conffile migration from old Ubuntu defaults
    (needed until after the next LTS release).

[ Daniel Holbach ]
* Port merge from 7.4.7 to 7.4.10.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
sub check_auto_buildable {
16
16
        my $this=shift;
17
 
        return -e $this->get_sourcepath("build.xml");
 
17
        return (-e $this->get_sourcepath("build.xml")) ? 1 : 0;
18
18
}
19
19
 
20
20
sub new {