diff options
author | Andre Heinecke <[email protected]> | 2016-09-05 08:42:02 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-09-05 08:42:02 +0000 |
commit | e3a4697894cc5a93c295e84bb10c743bc7fdc87e (patch) | |
tree | 08b6b580e6f82b78f3c5a9e92e4a5e79dda8b92c | |
parent | qt: Fix 2.1 t-support copy (diff) | |
download | gpgme-e3a4697894cc5a93c295e84bb10c743bc7fdc87e.tar.gz gpgme-e3a4697894cc5a93c295e84bb10c743bc7fdc87e.zip |
qt: Include cpp before core directory
* lang/qt/src/Makefile.am (AM_CPPFLAGS): Include cpp before core.
--
Both core and cpp have headers that have the same names, this
can lead to the wrong headers beeing included when qt bindings
are built.
Diffstat (limited to '')
-rw-r--r-- | lang/qt/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/qt/src/Makefile.am b/lang/qt/src/Makefile.am index 59206ed8..f63b2958 100644 --- a/lang/qt/src/Makefile.am +++ b/lang/qt/src/Makefile.am @@ -199,7 +199,7 @@ nodist_include_HEADERS = qgpgme_version.h libqgpgme_la_SOURCES = $(qgpgme_sources) $(qgpgme_headers) $(private_qgpgme_headers) -AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/lang/cpp/src \ +AM_CPPFLAGS = -I$(top_srcdir)/lang/cpp/src -I$(top_builddir)/src \ @GPGME_QT_CFLAGS@ @GPG_ERROR_CFLAGS@ @LIBASSUAN_CFLAGS@ \ -DBUILDING_QGPGME |