build/doc: Fix removing of trace.dat(5) SYNOPSIS

To remove the trace.dat man page "SYNOPSIS" section, the lines
from: .SH "SYNOPSIS" to .sp  are removed. But some systems do not
add a .sp after the SYNOPSIS, so they remove the entire rest of
the document.

Instead of testing for .sp, test for "ignore" since that is in the
document and is known to be there.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
diff --git a/Documentation/Makefile b/Documentation/Makefile
index f7f777f..7ed8877 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -38,7 +38,7 @@
 # asciidoc requires a synopsis, but file format man pages (5) do
 # not require them. This removes it from the file in the final step.
 define remove_synopsis
-	(sed -e '/^\.SH "SYNOPSIS"/,/^\.sp/d' $1 > $1.tmp;\
+	(sed -e '/^\.SH "SYNOPSIS"/,/ignore/d' $1 > $1.tmp;\
 	 mv $1.tmp $1)
 endef