From e2f37dd1db7aaace5bc55eca057f09b9b21a30ad Mon Sep 17 00:00:00 2001 From: Jonathan Pryor Date: Mon, 27 Oct 2008 14:53:28 +0000 Subject: [PATCH] * Makefile: Fix build error caused by filenames containing '`'. svn path=/trunk/mcs/; revision=117168 --- mcs/tools/mdoc/ChangeLog | 4 ++++ mcs/tools/mdoc/Makefile | 12 +++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/mcs/tools/mdoc/ChangeLog b/mcs/tools/mdoc/ChangeLog index cd4766fe8fb..d2e77baea7d 100644 --- a/mcs/tools/mdoc/ChangeLog +++ b/mcs/tools/mdoc/ChangeLog @@ -1,3 +1,7 @@ +2008-10-27 Jonathan Pryor + + * Makefile: Fix build error caused by filenames containing '`'. + 2008-10-27 Jonathan Pryor * Mono.Documentation/mdoc.cs: TraceLevel.Error messages should go to diff --git a/mcs/tools/mdoc/Makefile b/mcs/tools/mdoc/Makefile index 3f7ebba56e0..d77df6812c1 100644 --- a/mcs/tools/mdoc/Makefile +++ b/mcs/tools/mdoc/Makefile @@ -25,9 +25,7 @@ MDOC_TEST_FILES = \ Test/TestEcmaDocs.xml \ Test/validate.check.monodocer \ Test/validate.check.monodocer.importslashdoc \ - Test/validate.check.monodocer.since \ - $(shell find Test/en.expected* -name \*.xml) \ - $(shell find Test/html.expected* -name \*.html) + Test/validate.check.monodocer.since EXTRA_DISTFILES = \ $(MDOC_RESOURCES) \ @@ -54,6 +52,14 @@ MONO = \ monodocer1.exe : Mono.Documentation/monodocer.cs $(CSCOMPILE1) -debug+ -d:NET_1_0 Mono.Documentation/monodocer.cs -out:$@ -r:Mono.GetOptions +dist-local: dist-default dist-tests + +dist-tests: + find Test/en.expected* -name '*.xml' > .files + find Test/html.expected* -name '*.html' >> .files + tar cTf .files - | (cd $(distdir); tar xf -) + rm .files ; \ + test-local: $(PROGRAM) clean-local: cleanup -- 2.25.1