From patchwork Tue Mar 5 21:35:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 225178 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 4ADBC2C0359 for ; Wed, 6 Mar 2013 08:37:05 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2D8F2A029B; Tue, 5 Mar 2013 21:37:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8hQEFeg+PEAL; Tue, 5 Mar 2013 21:36:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id EA003A011B; Tue, 5 Mar 2013 21:36:58 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 43BFC8F783 for ; Tue, 5 Mar 2013 21:36:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CF4138C30B for ; Tue, 5 Mar 2013 21:36:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LSAhU-go7Fe1 for ; Tue, 5 Mar 2013 21:36:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by whitealder.osuosl.org (Postfix) with ESMTPS id BEC768BEC6 for ; Tue, 5 Mar 2013 21:36:38 +0000 (UTC) Received: by mail-wg0-f47.google.com with SMTP id dr13so6624737wgb.14 for ; Tue, 05 Mar 2013 13:36:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references; bh=Xc/Kn3pPm0kZDTi4ipd0aO3hoM7uHJl8HlzwVFGYZhw=; b=B3s+7sj9OYJmA+9y99WWpupf4gTLhSvZKiIUVteVZpDZqnE5XRalAD1f3Y8ZTcAyEx pjbRtrYgmpPnEFUFemgCKKDy2IvZJS7gC2KXtH31QWNe2Ju/6tSIWC40AfpvufgOx9gK fTdjFzKBkR+EYpy+ZJQzzmnZpBB8fstFfSuUUrj5DNZfDJ5L5pMMZHLtdcELuZ8FqWd0 PLNFRO2LVcM8yhuFm7jnh6vftXNV1Z8lBOcNHBWaQa1WHF1D2rExrzXK9mo/Q/vdh0VN MTwmqAN071xkt57QjMBH9sBboYaYGm5a9nrz8ehOBQK4mpxdBX27Sl0rLPBoDLTRRlFU fmMA== X-Received: by 10.180.79.227 with SMTP id m3mr21824653wix.12.1362519396932; Tue, 05 Mar 2013 13:36:36 -0800 (PST) Received: from localhost.localdomain (ivr94-4-82-229-165-48.fbx.proxad.net. [82.229.165.48]) by mx.google.com with ESMTPS id dm9sm13723264wib.3.2013.03.05.13.36.35 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 13:36:36 -0800 (PST) From: Samuel Martin To: buildroot@busybox.net Date: Tue, 5 Mar 2013 22:35:31 +0100 Message-Id: X-Mailer: git-send-email 1.8.1.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 5/6] Makefile: add to the release target a warning about the manual updates. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The manual-update-lists target is not added to the dependencies of the release target to allow editing the generated files. Signed-off-by: Samuel Martin --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 1300725..bcd896c 100644 --- a/Makefile +++ b/Makefile @@ -815,6 +815,8 @@ release: OUT=buildroot-$(BR2_VERSION) # Create release tarballs. We need to fiddle a bit to add the generated # documentation to the git output release: + $(warning Make sure the manual is up-to-date. To update the manual, run:) + $(warning $$ make manual-update-lists) git archive --format=tar --prefix=$(OUT)/ master > $(OUT).tar $(MAKE) O=$(OUT) manual-html manual-txt manual-pdf tar rf $(OUT).tar $(OUT)