From 6a3f8175ffc9f8a01f4e54d6395d6c4a925ab06f Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sat, 28 Jan 2012 22:16:38 +0000 Subject: [PATCH] Bug #668196: Fix installation of python bindings With this patch, files are correctly installed together. Patch by Vincent Untz. BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21905 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/optional/python-bindings/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/optional/python-bindings/Makefile.am b/src/optional/python-bindings/Makefile.am index fb327dc186..157221d85c 100644 --- a/src/optional/python-bindings/Makefile.am +++ b/src/optional/python-bindings/Makefile.am @@ -2,7 +2,7 @@ SUBDIRS = . tests SWIG_FILES = gnucash_core.i timespec.i -pkgpython_PYTHON = \ +pkgpyexec_DATA = \ __init__.py \ function_class.py \ gnucash_core.py \ @@ -79,6 +79,7 @@ gnucash_core_c.py: gnucash_core.c $(SWIG_FILES) endif EXTRA_DIST = \ + $(pkgpyexec_DATA) \ $(SWIG_FILES) \ example_scripts/Invoice.tex \ example_scripts/latex_invoices.py \