From patchwork Tue Mar 12 04:47:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 226768 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 58C3F2C00DC for ; Tue, 12 Mar 2013 15:49:26 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4370BA02B8; Tue, 12 Mar 2013 04:49:24 +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 9RmpOHL2A65d; Tue, 12 Mar 2013 04:49:20 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 171DEA010F; Tue, 12 Mar 2013 04:48:53 +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 7C68D8F74B for ; Tue, 12 Mar 2013 04:48:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C27DC8C861 for ; Tue, 12 Mar 2013 04:48:42 +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 ozczAPgVHr+Z for ; Tue, 12 Mar 2013 04:48:41 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2CC358C8CE for ; Tue, 12 Mar 2013 04:48:40 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id e12so5800076wge.22 for ; Mon, 11 Mar 2013 21:48:39 -0700 (PDT) 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=9MEiJdY5Aq95ZAUDY6+nQxqFIHBE3iUl1/tAc3PZcI4=; b=jkTnuSaNJdiNBoJkSDT1NE6yni+DsKrWEz4TOIbeDbqcsoQwfgqlU4hbTBzUw6fudu GIbHHtIEXX4uNvs31JN7se5ZcFmNVDGTMmca7zlK9vicDSnQ8sWo6HQYDOula3IMs0Jx y3iPwUm5D21Bw0ZasUgaLZYbz+AC2RnzjiBEwlp+KXHZ2ZBnbAE03/WW1ajHSWNn1dR3 IqwAqdb9s3yN7p7TACQBnQM9kazSxeaoujS4GPCjKZ6K61q8QwlS1CXgraLCod+hp8ia AkJXjqHaGmB4o946DUveVz50vqMz/wpHuCJSqxI4COz1zapVpW5eYZdoX1LEDAch1Xkq 2Nqg== X-Received: by 10.180.94.135 with SMTP id dc7mr16900316wib.11.1363063719472; Mon, 11 Mar 2013 21:48:39 -0700 (PDT) Received: from localhost.localdomain (ivr94-4-82-229-165-48.fbx.proxad.net. [82.229.165.48]) by mx.google.com with ESMTPS id n2sm12014923wiy.6.2013.03.11.21.48.38 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Mar 2013 21:48:38 -0700 (PDT) From: Samuel Martin To: buildroot@busybox.net Date: Tue, 12 Mar 2013 05:47:17 +0100 Message-Id: X-Mailer: git-send-email 1.8.1.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 4/5] 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 c462bb1..2b25059 100644 --- a/Makefile +++ b/Makefile @@ -817,6 +817,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)