diff options
author | Justus Winter <[email protected]> | 2016-06-01 12:16:27 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-06-01 12:18:45 +0000 |
commit | 73c47535b631a55687ecc5eff1d1d9a9fd71021e (patch) | |
tree | 9b5c665b9c896e451c132207e8b4301217499d14 /lang/python/Makefile.am | |
parent | Cpp: Use whitelist for status messages (diff) | |
download | gpgme-73c47535b631a55687ecc5eff1d1d9a9fd71021e.tar.gz gpgme-73c47535b631a55687ecc5eff1d1d9a9fd71021e.zip |
python: Improve build system integration, fix warnings.
* lang/python/Makefile.am: Pass CFLAGS to python build system.
* lang/python/helpers.c (pyPassphraseCb): Use correct type for length.
(pygpgme_data_new_from_cbs): Drop unused variable.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/Makefile.am')
-rw-r--r-- | lang/python/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 80349225..18f77bb7 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -40,7 +40,7 @@ gpgme_wrap.c pyme/pygpgme.py: gpgme.i errors.i gpgme.h copystamp $< all-local: gpgme_wrap.c pyme/pygpgme.py copystamp - $(PYTHON) $(srcdir)/setup.py build --verbose + CFLAGS="$(CFLAGS)" $(PYTHON) $(srcdir)/setup.py build --verbose clean-local: rm -rf -- build gpgme.h errors.i gpgme_wrap.c pyme/pygpgme.py \ |