>From bfefc2cf0efb0913a42862886363b3140dcdbb2a Mon Sep 17 00:00:00 2001 From: Hongli Lai (Phusion) <[email protected]> Date: Mon, 6 Jun 2011 13:39:00 +0200 Subject: [PATCH] Ensure that 'make gem' builds the documentation too.
If autogenerated documentation files, like man pages, don't exist then 'make gem' will fail, complaining that some files are not found. By depending the 'gem' target on the 'doc' target we ensure that 'make gem' always works. Signed-off-by: Hongli Lai (Phusion) <[email protected]> --- GNUmakefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 4072826..90cc451 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -257,7 +257,7 @@ gem: $(pkggem) install-gem: $(pkggem) gem install $(CURDIR)/$< -$(pkggem): .manifest fix-perms +$(pkggem): .manifest fix-perms doc gem build $(rfpackage).gemspec mkdir -p pkg mv $(@F) $@ -- 1.7.5 _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
