From patchwork Mon Feb 22 13:17:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ricardo Salveti X-Patchwork-Id: 62566 Delivered-To: patch@linaro.org Received: by 10.112.43.199 with SMTP id y7csp1229908lbl; Mon, 22 Feb 2016 05:17:52 -0800 (PST) X-Received: by 10.55.82.85 with SMTP id g82mr32012691qkb.107.1456147072386; Mon, 22 Feb 2016 05:17:52 -0800 (PST) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id p64si18579874qgd.28.2016.02.22.05.17.51; Mon, 22 Feb 2016 05:17:52 -0800 (PST) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id A3FB9617C4; Mon, 22 Feb 2016 13:17:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ip-10-142-244-252 X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, URIBL_BLOCKED autolearn=disabled version=3.4.0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id E7B2761784; Mon, 22 Feb 2016 13:17:47 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id E452661784; Mon, 22 Feb 2016 13:17:45 +0000 (UTC) Received: from mail-qg0-f49.google.com (mail-qg0-f49.google.com [209.85.192.49]) by lists.linaro.org (Postfix) with ESMTPS id 3CC5E61756 for ; Mon, 22 Feb 2016 13:17:45 +0000 (UTC) Received: by mail-qg0-f49.google.com with SMTP id b35so109931354qge.0 for ; Mon, 22 Feb 2016 05:17:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=YbVjJjeaDhx3+ubX3Ya/Zu4lmfk3OoLPRArGZybErtg=; b=iWOg3pOVnRRj4NnQkkDUvhEmfXJKqddBwHLcXgY9e58u58v+MCCrljEH9AZsUr5AzR 3zmOvF73FaLC+bzsUWfZ/zq1r90md+IBzOHH5NDD+ZRg0flw/Vf8niCx2wFqAN7HVNTJ X6+592MwcC0TdhPPu9owD7J6WcSSwcgMOzRqaVf52nARZ7JJTye1sn1BmrOheN6HutSl Lb9MMKzq5uv6S8D/SKITmIhIGtyxEX9+KyULQEjnQrrbJf/yarznglTAzZ7SeT64oG9Q VSUVkkFhAf9Fwn7cE22S5LnC94FS/X4remn0riKT55FJ5hRk4JB5c2mTBQvg4sBexZxH ik4Q== X-Gm-Message-State: AG10YORtlweeTkr7DRdYc361VhNMzvmlqoQdoZ75IWy+p6HGim85+/ycC4TiFOs2IHmb7dQlpbc= X-Received: by 10.140.32.203 with SMTP id h69mr34255638qgh.55.1456147064998; Mon, 22 Feb 2016 05:17:44 -0800 (PST) Received: from localhost.localdomain ([179.223.143.138]) by smtp.gmail.com with ESMTPSA id w66sm6261146qgd.26.2016.02.22.05.17.43 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 22 Feb 2016 05:17:44 -0800 (PST) From: Ricardo Salveti To: lng-odp@lists.linaro.org Date: Mon, 22 Feb 2016 10:17:34 -0300 Message-Id: <1456147056-767-1-git-send-email-ricardo.salveti@linaro.org> X-Mailer: git-send-email 2.5.0 X-Topics: patch Subject: [lng-odp] [PATCH 1/3] bootstrap: force autoconf update X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Since scmversion gets populated during the configure process, the only way for the cache to be updated through commits is by either running make distclean or by forcing autoconf updates when bootstrap gets called (e.g. builddeb). Signed-off-by: Ricardo Salveti Reviewed-by: Anders Roxell --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 7c3d220..6fd91c8 100755 --- a/bootstrap +++ b/bootstrap @@ -4,4 +4,4 @@ aclocal -I config -I m4 libtoolize --copy autoheader automake --add-missing --copy --warnings=all -autoconf +autoconf --force