~ubuntu-branches/ubuntu/utopic/debhelper/utopic-proposed

« back to all changes in this revision

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

  • Committer: Steve Langasek
  • Author(s): Martin Pitt
  • Date: 2011-10-16 06:51:20 UTC
  • mfrom: (1.4.35 sid)
  • Revision ID: steve.langasek@canonical.com-20111016065120-3qbjooj2ai6a783a
Tags: 8.9.8ubuntu1
merge 8.9.8 from Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
use Debian::Debhelper::Dh_Lib qw(error);
12
12
use base 'Debian::Debhelper::Buildsystem::makefile';
13
13
 
 
14
our $qmake="qmake";
 
15
 
14
16
sub DESCRIPTION {
15
17
        "qmake (*.pro)";
16
18
}
66
68
        push @flags, "QMAKE_STRIP=:";
67
69
        push @flags, "PREFIX=/usr";
68
70
 
69
 
        $this->doit_in_builddir('qmake', @options, @flags, @_);
 
71
        $this->doit_in_builddir($qmake, @options, @flags, @_);
70
72
}
71
73
 
72
74
sub install {