summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-07-16 22:21:16 -0400
committerJoey Hess <joey@kitenet.net>2011-07-16 22:21:16 -0400
commit1b1b37221fe9d69bd23b61e33df53cc54991457b (patch)
tree7a984af344643706d2c4e003205af6344c39dc15 /Debian/Debhelper
parent73c921d8e22c0d5d0894f321cd5b22ec9d6dab01 (diff)
oops, only force qt4 when it's enabled
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Buildsystem/qmake_qt4.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/Debian/Debhelper/Buildsystem/qmake_qt4.pm b/Debian/Debhelper/Buildsystem/qmake_qt4.pm
index 1bc9fe6f..1cac5f0f 100644
--- a/Debian/Debhelper/Buildsystem/qmake_qt4.pm
+++ b/Debian/Debhelper/Buildsystem/qmake_qt4.pm
@@ -5,10 +5,14 @@ use warnings;
use Debian::Debhelper::Dh_Lib qw(error);
use base 'Debian::Debhelper::Buildsystem::qmake';
-$Debian::Debhelper::Buildsystem::qmake::qmake="qmake-qt4";
-
sub DESCRIPTION {
"qmake for QT 4 (*.pro)";
}
+sub configure {
+ my $this=shift;
+ $Debian::Debhelper::Buildsystem::qmake::qmake="qmake-qt4";
+ $this->SUPER::configure(@_);
+}
+
1