aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-02-05 16:34:33 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-02-05 16:34:33 +0000
commit7a96efc0c9f94e1f9146d1cc7d393b68d6aaf46f (patch)
tree9e6064b3488c59c8473dc9091d68c7710834417b /python
parent33caa0b8307eccf22010400747830b1967edb292 (diff)
downloadandroid_external_libxml2-7a96efc0c9f94e1f9146d1cc7d393b68d6aaf46f.tar.gz
android_external_libxml2-7a96efc0c9f94e1f9146d1cc7d393b68d6aaf46f.tar.bz2
android_external_libxml2-7a96efc0c9f94e1f9146d1cc7d393b68d6aaf46f.zip
do not install outside of prefix Daniel
* configure.in python/Makefile.am: do not install outside of prefix Daniel
Diffstat (limited to 'python')
-rw-r--r--python/Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/python/Makefile.am b/python/Makefile.am
index 7d02f53f..fb1b6632 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -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)
-