diff options
| author | William M. Brack <wbrack@src.gnome.org> | 2005-02-12 01:08:22 +0000 |
|---|---|---|
| committer | William M. Brack <wbrack@src.gnome.org> | 2005-02-12 01:08:22 +0000 |
| commit | a22da29921fc1f070084320428c2975e53acc184 (patch) | |
| tree | 67c28b2487f5b0e1c3a3f5ce0af8833f1341e5e6 /python/tests | |
| parent | 3a1cd21df775a773ea6addb96377cef3ab39b615 (diff) | |
| download | android_external_libxml2-a22da29921fc1f070084320428c2975e53acc184.tar.gz android_external_libxml2-a22da29921fc1f070084320428c2975e53acc184.tar.bz2 android_external_libxml2-a22da29921fc1f070084320428c2975e53acc184.zip | |
fixed xmlXIncludeParseFile to prevent overwriting XML_COMPLETE_ATTRS when
* xinclude.c: fixed xmlXIncludeParseFile to prevent
overwriting XML_COMPLETE_ATTRS when setting pctxt->loadsubset
(bug 166199)
* Makefile.am, python/tests/Makefile.am, xstc/Makefile.am: added
code to add $(top_builddir)/.libs to LD_LIBRARY_PATH whenever
PYTHONPATH is set, to assure new libxml2 routines are used.
Diffstat (limited to 'python/tests')
| -rw-r--r-- | python/tests/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/tests/Makefile.am b/python/tests/Makefile.am index 1ae9b6ca..3fb29590 100644 --- a/python/tests/Makefile.am +++ b/python/tests/Makefile.am @@ -52,6 +52,8 @@ tests: $(PYTESTS) @echo "## running Python regression tests" -@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; \ export PYTHONPATH; \ + LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \ + export LD_LIBRARY_PATH; \ for test in $(PYTESTS) ; \ do log=`$(PYTHON) $(srcdir)/$$test` ; \ if [ "`echo $$log | grep OK`" = "" ] ; then \ |
