summaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2013-05-09 13:10:09 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2013-05-09 13:10:09 +0100
commita592c98461728e22423a5c6ecfd5cebf0150adf0 (patch)
treefd2a9d8a95ead041ceafdd3b7d344d5b580ce2cb /Makefile.am
parentf6089a627a932bad7cfd5c8030bf32fcc9888996 (diff)
Fail properly when attempting to build manpage without rake
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 274197f5..b077842f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -50,7 +50,7 @@ TEST_LOG_COMPILER = tests/run
man_MANS = jq.1
jq.1: docs/content/3.manual/manual.yml
- ( cd ${abs_srcdir}/docs; rake manpage ) > $@ || rm -f $@
+ ( cd ${abs_srcdir}/docs; rake manpage ) > $@ || { rm -f $@; false; }