* src/gen/lib/Makefile.am, src/gen/db/Makefile.am, src/gen/proxy/Makefile.am, src/gen/utils/Makefile.am: Fix path structure

svn: r9295
This commit is contained in:
Martin Hawlisch 2007-11-04 20:41:12 +00:00
parent 1ac7e09eff
commit aa0a835330
5 changed files with 21 additions and 15 deletions

View File

@ -1,3 +1,9 @@
2007-11-04 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/gen/lib/Makefile.am
* src/gen/db/Makefile.am
* src/gen/proxy/Makefile.am
* src/gen/utils/Makefile.am: Fix path structure
2007-11-03 Stéphane Charette <stephanecharette@gmail.com>
* src/plugins/NarrativeWeb.py: resize and link to large images

View File

@ -3,7 +3,7 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/db
pkgdatadir = $(datadir)/@PACKAGE@/gen/db
pkgdata_PYTHON = \
__init__.py\
@ -14,14 +14,14 @@ pkgdata_PYTHON = \
exceptions.py \
iterator.py
pkgpyexecdir = @pkgpyexecdir@/db
pkgpythondir = @pkgpythondir@/db
pkgpyexecdir = @pkgpyexecdir@/gen/db
pkgpythondir = @pkgpythondir@/gen/db
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \

View File

@ -3,7 +3,7 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/lib
pkgdatadir = $(datadir)/@PACKAGE@/gen/lib
pkgdata_PYTHON = \
addressbase.py \
@ -62,13 +62,13 @@ pkgdata_PYTHON = \
urltype.py \
witness.py
pkgpyexecdir = @pkgpyexecdir@/lib
pkgpythondir = @pkgpythondir@/lib
pkgpyexecdir = @pkgpyexecdir@/gen/lib
pkgpythondir = @pkgpythondir@/gen/lib
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \

View File

@ -3,7 +3,7 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/proxy
pkgdatadir = $(datadir)/@PACKAGE@/gen/proxy
pkgdata_PYTHON = \
__init__.py \
@ -13,8 +13,8 @@ pkgdata_PYTHON = \
private.py \
proxybase.py
pkgpyexecdir = @pkgpyexecdir@/gen
pkgpythondir = @pkgpythondir@/gen
pkgpyexecdir = @pkgpyexecdir@/gen/proxy
pkgpythondir = @pkgpythondir@/gen/proxy
# Clean up all the byte-compiled files

View File

@ -3,7 +3,7 @@
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/utils
pkgdatadir = $(datadir)/@PACKAGE@/gen/utils
pkgdata_PYTHON = \
__init__.py \
@ -12,14 +12,14 @@ pkgdata_PYTHON = \
progressmon.py \
longop.py
pkgpyexecdir = @pkgpyexecdir@/utils
pkgpythondir = @pkgpythondir@/utils
pkgpyexecdir = @pkgpyexecdir@/gen/utils
pkgpythondir = @pkgpythondir@/gen/utils
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \