* src/Makefile.am: Remove extra DESTDIR.

* src/docgen/Makefile.am: Remove extra DESTDIR, correct pycheck target.
* src/plugins/Makefile.am: Correct pycheck target.


svn: r3600
This commit is contained in:
Alex Roitman 2004-10-06 19:16:26 +00:00
parent 15eb34737b
commit 7af735c6cf
4 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2004-10-06 Alex Roitman <shura@alex.neuro.umn.edu>
* src/Makefile.am: Remove extra DESTDIR.
* src/docgen/Makefile.am: Remove extra DESTDIR, correct pycheck target.
* src/plugins/Makefile.am: Correct pycheck target.
2004-10-05 Don Allingham <dallingham@users.sourceforge.net>
* src/docgen/PdfDoc.py: fixed register_book_doc call
* src/AddrEdit.py: pychecker fixes

View File

@ -10,7 +10,7 @@ MOSTLYCLEANFILES =
# In principle, this is handled by PYCFILES and PYOFILES, but
# they don't seem to work so we edited the py-compile script instead
gdirdir=$(DESTDIR)$(prefix)/share/gramps
gdirdir=$(prefix)/share/gramps
gdir_PYTHON = \
accent.py \

View File

@ -2,7 +2,7 @@
# Use GNU make's ':=' syntax for nice wildcard use.
# If not using GNU make, then list all .py files individually
docgendir=$(DESTDIR)$(prefix)/share/gramps/docgen
docgendir=$(prefix)/share/gramps/docgen
docgen_PYTHON = \
AbiWord2Doc.py\
@ -22,4 +22,4 @@ GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));
pychecker $(docgen_PYTHON));

View File

@ -86,4 +86,4 @@ GRAMPS_PY_MODPATH = "../:../docgen"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));
pychecker $(pkgdata_PYTHON));