diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-16 22:21:16 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-16 22:21:16 -0400 |
commit | 1b1b37221fe9d69bd23b61e33df53cc54991457b (patch) | |
tree | 7a984af344643706d2c4e003205af6344c39dc15 | |
parent | 73c921d8e22c0d5d0894f321cd5b22ec9d6dab01 (diff) | |
download | debhelper-1b1b37221fe9d69bd23b61e33df53cc54991457b.tar.gz |
oops, only force qt4 when it's enabled
-rw-r--r-- | Debian/Debhelper/Buildsystem/qmake_qt4.pm | 8 |
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 |