bug #5554: Automake problem

svn: r18851
This commit is contained in:
Josip Pisoj
2012-02-10 20:25:15 +00:00
parent 8872ab4ec2
commit 53c9c30890
58 changed files with 182 additions and 234 deletions

View File

@@ -10,9 +10,9 @@ SUBDIRS = \
menu\
report
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug
pkgdata_PYTHON = \
pkgpython_PYTHON = \
__init__.py \
_docgenplugin.py \
_export.py \
@@ -25,8 +25,6 @@ pkgdata_PYTHON = \
utils.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug
pkgpythondir = @pkgpythondir@/gen/plug
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
@@ -35,4 +33,4 @@ GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));
pychecker $(pkgpython_PYTHON));

View File

@@ -4,16 +4,14 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/docbackend
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/docbackend
pkgdata_PYTHON = \
pkgpython_PYTHON = \
__init__.py \
cairobackend.py \
docbackend.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/docbackend
pkgpythondir = @pkgpythondir@/gen/plug/docbackend
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
@@ -22,4 +20,4 @@ GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));
pychecker $(pkgpython_PYTHON));

View File

@@ -6,7 +6,7 @@
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/docgen
pkgdata_PYTHON = \
pkgpython_PYTHON = \
__init__.py \
basedoc.py \
drawdoc.py \
@@ -21,7 +21,7 @@ pkgdata_PYTHON = \
textdoc.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/docgen
pkgpythondir = @pkgpythondir@/gen/plug/docgen
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/docgen
# Clean up all the byte-compiled files
@@ -31,4 +31,4 @@ GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));
pychecker $(pkgpython_PYTHON));

View File

@@ -4,9 +4,9 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/menu
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/menu
pkgdata_PYTHON = \
pkgpython_PYTHON = \
__init__.py \
_boolean.py \
_booleanlist.py \
@@ -29,8 +29,6 @@ pkgdata_PYTHON = \
_text.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/menu
pkgpythondir = @pkgpythondir@/gen/plug/menu
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
@@ -39,4 +37,4 @@ GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));
pychecker $(pkgpython_PYTHON));

View File

@@ -3,7 +3,7 @@
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/report
pkgdata_PYTHON = \
pkgpython_PYTHON = \
__init__.py\
_bibliography.py\
_constants.py\
@@ -14,7 +14,7 @@ pkgdata_PYTHON = \
utils.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/report
pkgpythondir = @pkgpythondir@/gen/plug/report
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/report
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
@@ -23,4 +23,4 @@ GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));
pychecker $(pkgpython_PYTHON));