This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=8f2fcce22cd38dfc6a67111400914d4aaf31d7f0 commit 8f2fcce22cd38dfc6a67111400914d4aaf31d7f0 Author: Guillem Jover <[email protected]> AuthorDate: Sat Feb 29 23:22:50 2020 +0100 scripts/mk: Add QMAKE to buildtools.mk Closes: #920878 --- debian/changelog | 1 + scripts/mk/buildtools.mk | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9aa69aa07..f16d0f7e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,7 @@ dpkg (1.20.0) UNRELEASED; urgency=medium - Replace changelog with correct copyright in file header. * dpkg, dselect: Stop using first-person singular in output messages. * libdpkg: Fix memory leak in parsedb context close. + * buildtools.mk: Add QMAKE variable. Closes: #920878 * Perl modules: - Dpkg::Source::Package: Verify original tarball signatures at build time. - Dpkg::BuildFlags: Add new unset() method. diff --git a/scripts/mk/buildtools.mk b/scripts/mk/buildtools.mk index cdf7734d3..fcbfc2738 100644 --- a/scripts/mk/buildtools.mk +++ b/scripts/mk/buildtools.mk @@ -17,6 +17,7 @@ # AR: archiver # RANLIB: archive index generator # PKG_CONFIG: pkg-config tool +# QMAKE: Qt build system generator # # All the above variables have a counterpart variable for the build tool, # as in CC → CC_FOR_BUILD. @@ -73,3 +74,4 @@ $(eval $(call dpkg_buildtool_setvar,NM,nm)) $(eval $(call dpkg_buildtool_setvar,AR,ar)) $(eval $(call dpkg_buildtool_setvar,RANLIB,ranlib)) $(eval $(call dpkg_buildtool_setvar,PKG_CONFIG,pkg-config)) +$(eval $(call dpkg_buildtool_setvar,QMAKE,qmake)) -- Dpkg.Org's dpkg

