From 15840b18d5032deb32951978d702485cc38db2ac Mon Sep 17 00:00:00 2001 From: jay Date: Tue, 8 Feb 2005 00:07:56 +0000 Subject: [PATCH] Check that we have the right number of .xe files in the distribution also. --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index dadfdc6..8582fff 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,5 +49,7 @@ findutils-check-testfiles: distcount=`ls $(distdir)/*/testsuite/*/*.exp | wc -l` && srccount=`ls $(srcdir)/*/testsuite/*/*.exp | wc -l` && echo source $$srccount distributed $$distcount && test $$distcount -eq $$srccount @echo ; echo Checking to see if we distributed the full set of .xo files distcount=`ls $(distdir)/*/testsuite/*/*.xo | wc -l` && srccount=`ls $(srcdir)/*/testsuite/*/*.xo | wc -l` && echo source $$srccount distributed $$distcount && test $$distcount -eq $$srccount + @echo ; echo Checking to see if we distributed the full set of .xe files + distcount=`ls $(distdir)/*/testsuite/*/*.xe | wc -l` && srccount=`ls $(srcdir)/*/testsuite/*/*.xe | wc -l` && echo source $$srccount distributed $$distcount && test $$distcount -eq $$srccount @echo ; echo Checking to see if we distributed the full set of .xi files distcount=`ls $(distdir)/*/testsuite/inputs/*.xi | wc -l` && srccount=`ls $(srcdir)/*/testsuite/inputs/*.xi | wc -l` && echo source $$srccount distributed $$distcount && test $$distcount -eq $$srccount -- 2.11.4.GIT