mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-28 00:21:53 +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:
@ -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>
|
||||
|
||||
* python/TODO python/libxml.c: started adding SAX interfaces
|
||||
|
@ -223,7 +223,7 @@ if test "$with_python" != "no" ; then
|
||||
if test -r /usr/include/python$PYTHON_VERSION/Python.h
|
||||
then
|
||||
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
|
||||
echo could not find python$PYTHON_VERSION/Python.h
|
||||
fi
|
||||
|
@ -25,6 +25,14 @@ libxml2.py: $(srcdir)/libxml.py libxml2class.py
|
||||
|
||||
_libxml.so: libxml.o libxml2-py.o types.o
|
||||
$(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
|
||||
all:
|
||||
endif
|
||||
@ -54,11 +62,3 @@ tests: all
|
||||
clean:
|
||||
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)
|
||||
|
||||
|
Reference in New Issue
Block a user