PATCH: * Makefile.am (DISTCLEANFILES) add "testrun.xml"

Jacob Bachmeyer <[email protected]> Mon, 29 Oct 2018 21:56:29 -0500
Newsgroups gmane.comp.sysutils.dejagnu.bugs
Message-ID <[email protected]>
The options.exp test for the --xml option causes testrun.xml to be 
created, but make distclean does not remove it.

patch:

diff --git a/Makefile.am b/Makefile.am
index bd0ac0e..55e25d6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -25,7 +25,8 @@ EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest \
        $(pkgdata_DATA) $(config_DATA) $(baseboard_DATA) \
        $(TESTSUITE_FILES) $(XML) $(CONTRIB)
 
-DISTCLEANFILES = xXx.log xXx.sum x.log x.sum testrun.log testrun.sum
+DISTCLEANFILES = xXx.log xXx.sum x.log x.sum
+DISTCLEANFILES += testrun.log testrun.sum testrun.xml
 
 # Give a reassuring message so that users know the "build" worked.
 all-local:


-- Jacob