diff --git a/ChangeLog b/ChangeLog index e3dad3ea..8792bf01 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard + + * python/Makefile.am: typo in target name resulted in libxml2.py + to not be rebuilt. fixed DESTDIR similary to the libxslt one. + Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard * win32/win32/Makefile.mingw: updated with version from diff --git a/python/Makefile.am b/python/Makefile.am index 1e9bcfc0..88581f2e 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -28,7 +28,7 @@ if WITH_PYTHON mylibs = \ $(top_builddir)/libxml2.la -all_local: libxml2.py +all-local: libxml2.py pythondir = $(libdir)/python${PYTHON_VERSION}/site-packages python_LTLIBRARIES = libxml2mod.la @@ -40,11 +40,11 @@ libxml2.py: $(srcdir)/libxml.py libxml2class.py cat $(srcdir)/libxml.py libxml2class.py > libxml2.py install-data-local: - $(mkinstalldirs) $(DESTDIR)$(PYTHON_SITE_PACKAGES) - -@INSTALL@ -m 0644 libxml2.py $(DESTDIR)$(PYTHON_SITE_PACKAGES) - $(mkinstalldirs) $(DESTDIR)$(DOCS_DIR) - -@(for doc in $(DOCS) ; \ - do @INSTALL@ -m 0644 $$doc $(DESTDIR)$(DOCS_DIR) ; done) + $(mkinstalldirs) $(libdir)/python${PYTHON_VERSION}/site-packages + @INSTALL@ -m 0644 libxml2.py $(libdir)/python${PYTHON_VERSION}/site-packages + $(mkinstalldirs) $(DOCS_DIR) + @(for doc in $(DOCS) ; \ + do @INSTALL@ -m 0644 $$doc $(DOCS_DIR) ; done) GENERATE = generator.py API_DESC = $(top_srcdir)/doc/libxml2-api.xml $(srcdir)/libxml2-python-api.xml