diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-02-01 20:51:53 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-02-01 21:00:59 -0500 |
commit | 916521713019b80baf41efb060dae13c76dc60a7 (patch) | |
tree | bec7f32d87704600e421d1f4502f3a9fee558085 | |
parent | 111fc9a48383619c3cf4f4cda6992716d661ba3a (diff) |
trace-cmd/doc: Fail if manpage/docbook.xsl is not found
Fail if the docbook.xsl is not found. Currently it fails if
the file does not exist, but passing in a blank string does not
produce an error.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index be3711f..b59370e 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile | |||
@@ -17,7 +17,7 @@ else | |||
17 | endif | 17 | endif |
18 | 18 | ||
19 | define manpage.xsl | 19 | define manpage.xsl |
20 | if [ ! -f ${MANPAGE_DOCBOOK_XSL} ]; then \ | 20 | if [ -z ${MANPAGE_DOCBOOK_XSL} ]; then \ |
21 | echo "*********************************"; \ | 21 | echo "*********************************"; \ |
22 | echo "** No docbook.xsl is installed **"; \ | 22 | echo "** No docbook.xsl is installed **"; \ |
23 | echo "** Can't make man pages **"; \ | 23 | echo "** Can't make man pages **"; \ |