Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: third_party/libxslt/python/tests/Makefile.am

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove suppressions, have landed in blink now Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 EXAMPLE_DIR = $(datadir)/doc/libxslt-python-$(LIBXSLT_VERSION)/examples
2
3 TESTSPY= \
4 basic.py \
5 exslt.py \
6 extelem.py \
7 extfunc.py
8
9 XMLS= \
10 test.xml \
11 test.xsl
12
13 EXTRAS= \
14 pyxsltproc.py
15
16 EXTRA_DIST = $(TESTSPY) $(XMLS) $(EXTRAS)
17
18 CLEANFILES = *.pyc core
19
20 if WITH_PYTHON
21 tests: $(TESTSPY)
22 -@(PYTHONPATH="`pwd`/..:`pwd`/../.libs:$(srcdir)/.."; \
23 if test "x$(LIBXML_SRC)" != "x" ; then PYTHONPATH="$$PYTHONPATH:$(LIBX ML_SRC)/python:$(LIBXML_SRC)/python/.libs"; fi; \
24 export PYTHONPATH; \
25 for test in $(TESTSPY) ; do echo "-- $$test" ; (cd $(srcdir) && $(PYT HON) $$test ); done)
26 else
27 tests:
28 endif
29
30 install-data-local:
31 $(MKDIR_P) $(DESTDIR)$(EXAMPLE_DIR)
32 -(for test in $(TESTSPY) $(XMLS) $(EXTRAS); \
33 do $(INSTALL) -m 0644 $(srcdir)/$$test $(DESTDIR)$(EXAMPLE_DIR) ; done )
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698