diff options
author | Justus Winter <[email protected]> | 2016-05-18 11:17:59 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-05-18 13:37:38 +0000 |
commit | 2c3a5d93e78cfca22785e51c5a65184a47da4bff (patch) | |
tree | 168535e4e8a12622e38252e13d0be29665ee642b /lang/python | |
parent | Fix typo in compatibility declaration (diff) | |
download | gpgme-2c3a5d93e78cfca22785e51c5a65184a47da4bff.tar.gz gpgme-2c3a5d93e78cfca22785e51c5a65184a47da4bff.zip |
python: Various fixes.
* configure.ac: Fix SWIG detection, bump required Python version.
* lang/python/Makefile.am: Portability fix.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python')
-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 308fcd03..86c19659 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -26,7 +26,7 @@ gpgme.h: ../../src/gpgme.h # For VPATH builds we need to copy some files because Python's # distutils are not VPATH-aware. copystamp: $(srcdir)/pyme $(srcdir)/helpers.c $(srcdir)/helpers.h - if test "$(srcdir)" != "$(builddir)" ; then cp -a $^ . ; fi + if test "$(srcdir)" != "$(builddir)" ; then cp -r $^ . ; fi touch $@ gpgme_wrap.c pyme/pygpgme.py: gpgme.i gpgme.h copystamp |