python: Fix build system integration.

* lang/python/Makefile.am: Be more careful when cleaning the build
directory, we must not delete the generated file 'pyme/version.py'.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2016-08-02 18:42:26 +02:00
parent 135185b7ef
commit 0bd7d8c197

View File

@ -32,14 +32,25 @@ COPY_FILES = \
$(srcdir)/README \ $(srcdir)/README \
$(srcdir)/MANIFEST.in \ $(srcdir)/MANIFEST.in \
$(srcdir)/gpgme-h-clean.py \ $(srcdir)/gpgme-h-clean.py \
$(srcdir)/pyme \
$(srcdir)/examples \ $(srcdir)/examples \
$(srcdir)/helpers.c $(srcdir)/helpers.h $(srcdir)/private.h $(srcdir)/helpers.c $(srcdir)/helpers.h $(srcdir)/private.h
COPY_FILES_PYME = \
$(srcdir)/pyme/callbacks.py \
$(srcdir)/pyme/constants \
$(srcdir)/pyme/core.py \
$(srcdir)/pyme/errors.py \
$(srcdir)/pyme/__init__.py \
$(srcdir)/pyme/results.py \
$(srcdir)/pyme/util.py
# For VPATH builds we need to copy some files because Python's # For VPATH builds we need to copy some files because Python's
# distutils are not VPATH-aware. # distutils are not VPATH-aware.
copystamp: $(COPY_FILES) copystamp: $(COPY_FILES) $(COPY_FILES_PYME)
if test "$(srcdir)" != "$(builddir)" ; then cp -r $^ . ; fi if test "$(srcdir)" != "$(builddir)" ; then \
cp -r $(COPY_FILES) . ; \
cp -r $(COPY_FILES_PYME) pyme ; \
fi
touch $@ touch $@
all-local: copystamp all-local: copystamp
@ -70,6 +81,9 @@ clean-local:
if test "$(srcdir)" != "$(builddir)" ; then \ if test "$(srcdir)" != "$(builddir)" ; then \
find . -type d ! -perm -200 -exec chmod u+w {} ';' ; \ find . -type d ! -perm -200 -exec chmod u+w {} ';' ; \
for F in $(COPY_FILES); do rm -rf -- `basename $$F` ; done ; \ for F in $(COPY_FILES); do rm -rf -- `basename $$F` ; done ; \
for F in $(COPY_FILES_PYME); do \
rm -rf -- pyme/`basename $$F` ; \
done ; \
fi fi
install-exec-local: install-exec-local: