1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-17 18:21:05 +03:00

do not install outside of prefix Daniel

* configure.in python/Makefile.am: do not install outside
  of prefix
Daniel
This commit is contained in:
Daniel Veillard
2002-02-05 16:34:33 +00:00
parent 33caa0b830
commit 7a96efc0c9
3 changed files with 14 additions and 9 deletions

View File

@ -1,3 +1,8 @@
Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in python/Makefile.am: do not install outside
of prefix
Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com> Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/TODO python/libxml.c: started adding SAX interfaces * python/TODO python/libxml.c: started adding SAX interfaces

View File

@ -223,7 +223,7 @@ if test "$with_python" != "no" ; then
if test -r /usr/include/python$PYTHON_VERSION/Python.h if test -r /usr/include/python$PYTHON_VERSION/Python.h
then then
PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
PYTHON_SITE_PACKAGES=/usr/lib/python$PYTHON_VERSION/site-packages PYTHON_SITE_PACKAGES='$(prefix)/lib/python$PYTHON_VERSION/site-packages'
else else
echo could not find python$PYTHON_VERSION/Python.h echo could not find python$PYTHON_VERSION/Python.h
fi fi

View File

@ -25,6 +25,14 @@ libxml2.py: $(srcdir)/libxml.py libxml2class.py
_libxml.so: libxml.o libxml2-py.o types.o _libxml.so: libxml.o libxml2-py.o types.o
$(CC) $(LINK_FLAGS) libxml.o libxml2-py.o types.o $(LIBS) -o _libxml.so $(CC) $(LINK_FLAGS) libxml.o libxml2-py.o types.o $(LIBS) -o _libxml.so
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(PYTHON_SITE_PACKAGES)
-@INSTALL@ -m 0644 libxml2.py $(DESTDIR)$(PYTHON_SITE_PACKAGES)
-@INSTALL@ -m 0755 _libxml.so $(DESTDIR)$(PYTHON_SITE_PACKAGES)
$(mkinstalldirs) $(DESTDIR)$(DOCS_DIR)
-@(for doc in $(DOCS) ; \
do @INSTALL@ -m 0644 $$doc $(DESTDIR)$(DOCS_DIR) ; done)
else else
all: all:
endif endif
@ -54,11 +62,3 @@ tests: all
clean: clean:
rm -f $(GENERATED) *.o _libxml.so *.pyc libxml2.py rm -f $(GENERATED) *.o _libxml.so *.pyc libxml2.py
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(PYTHON_SITE_PACKAGES)
-@INSTALL@ -m 0644 libxml2.py $(DESTDIR)$(PYTHON_SITE_PACKAGES)
-@INSTALL@ -m 0755 _libxml.so $(DESTDIR)$(PYTHON_SITE_PACKAGES)
$(mkinstalldirs) $(DESTDIR)$(DOCS_DIR)
-@(for doc in $(DOCS) ; \
do @INSTALL@ -m 0644 $$doc $(DESTDIR)$(DOCS_DIR) ; done)