[xml] [PATCH] Fix missing $(EXEEXT) in Makefile.am
- From: pavenis lanet lv
- To: xml gnome org
- Subject: [xml] [PATCH] Fix missing $(EXEEXT) in Makefile.am
- Date: Fri, 8 Feb 2002 15:56:05 +0200
This patch adds missing occurances of $(EXEEXT) in Makefile.am.
(Found it when tried to build and test libxml2-2.4.13 for
i386-pc-msdosdjgpp ...). After that tests mostly passes
Andris
--- libxml2-2.4.13/Makefile.am~1 Mon Jan 14 19:58:24 2002
+++ libxml2-2.4.13/Makefile.am Fri Feb 8 15:32:22 2002
@@ -86,7 +86,7 @@
tests: XMLtests XMLenttests HTMLtests Validtests URItests XPathtests XPtrtests
XIncludetests Scripttests Catatests @TEST_THREADS@
-HTMLtests : testHTML
+HTMLtests : testHTML$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## HTML regression tests"
@@ -162,7 +162,7 @@
fi ; fi ; done)
-XMLtests : xmllint
+XMLtests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## XML regression tests"
@@ -224,7 +224,7 @@
rm result.$$name result2.$$name ; \
fi ; fi ; done)
-Docbtests : xmllint
+Docbtests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## SGML DocBook regression tests"
@@ -244,7 +244,7 @@
rm result.$$name ; \
fi ; fi ; done)
-XMLenttests : xmllint
+XMLenttests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## XML entity subst regression tests"
@@ -264,7 +264,7 @@
rm result.$$name result2.$$name ; \
fi ; fi ; done)
-URItests : testURI
+URItests : testURI$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## URI module regression tests"
@@ -296,7 +296,7 @@
rm result.$$name ; \
fi ; fi ; done)
-XPathtests : testXPath
+XPathtests : testXPath$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## XPath regression tests"
@@ -336,7 +336,7 @@
rm result.$$name ; \
fi ; fi ; done ; fi ; done)
-XPtrtests : testXPath
+XPtrtests : testXPath$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## XPointer regression tests"
@@ -361,7 +361,7 @@
rm result.$$name ; \
fi ; fi ; done ; fi ; done)
-XIncludetests : xmllint
+XIncludetests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## XInclude regression tests"
@@ -380,7 +380,7 @@
rm result.$$name ; \
fi ; fi ; done)
-Scripttests : xmllint
+Scripttests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## Scripts regression tests"
@@ -401,7 +401,7 @@
rm result.$$name ; \
fi ; fi ; done)
-Catatests : xmlcatalog
+Catatests : xmlcatalog$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## Catalog regression tests"
@@ -455,7 +455,7 @@
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
rm -f result/catalogs/mycatalog)
-SVGtests : xmllint
+SVGtests : xmllint$(EXEEXT)
@echo "##"
@echo "## SVG parsing regression tests"
@echo "##"
@@ -474,13 +474,13 @@
rm result.$$name result2.$$name ; \
fi ; fi ; done)
-Threadtests : testThreads
+Threadtests : testThreads$(EXEEXT)
@echo "##"
@echo "## Threaded regression tests"
@echo "##"
$(top_builddir)/testThreads
-SAXtests : testSAX
+SAXtests : testSAX$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## SAX callbacks regression tests"
@@ -499,7 +499,7 @@
fi ; fi ; done)
-Validtests : xmllint
+Validtests : xmllint$(EXEEXT)
@(echo > .memdump)
@echo "##"
@echo "## Valid documents regression tests"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]