From patchwork Tue Jul 16 21:59:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Droneaud X-Patchwork-Id: 2828329 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 35585C0AB2 for ; Tue, 16 Jul 2013 22:02:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7142920160 for ; Tue, 16 Jul 2013 22:02:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9244A20151 for ; Tue, 16 Jul 2013 22:02:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933546Ab3GPWCI (ORCPT ); Tue, 16 Jul 2013 18:02:08 -0400 Received: from smtp1-g21.free.fr ([212.27.42.1]:37311 "EHLO smtp1-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933201Ab3GPWCH (ORCPT ); Tue, 16 Jul 2013 18:02:07 -0400 Received: from localhost.localdomain (unknown [IPv6:2a01:e35:2e9f:6ac0:cd91:c425:aa91:8c1a]) by smtp1-g21.free.fr (Postfix) with ESMTP id 22AA894016E; Wed, 17 Jul 2013 00:01:55 +0200 (CEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.14.7/8.14.5) with ESMTP id r6GM0Mt3001102; Wed, 17 Jul 2013 00:00:22 +0200 Received: (from ydroneaud@localhost) by localhost.localdomain (8.14.7/8.14.7/Submit) id r6GM0MqQ001101; Wed, 17 Jul 2013 00:00:22 +0200 From: Yann Droneaud To: Sean Hefty , linux-rdma@vger.kernel.org Cc: Jeff Squyres , Yann Droneaud Subject: [PATCH librdmacm 3/8] autogen.sh: Use autoreconf in autogen.sh Date: Tue, 16 Jul 2013 23:59:47 +0200 Message-Id: <317ae98daf0eec49ffb297a5fc59b3738366af6d.1374011243.git.ydroneaud@opteya.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Jeff Squyres The old sequence of Autotools commands listed in autogen.sh is no longer correct. Instead, just use the single "autoreconf" command, which will invoke all the Right Autotools commands in the correct order. Signed-off-by: Jeff Squyres Signed-off-by: Yann Droneaud --- autogen.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index f433312..6c9233e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,9 +1,4 @@ #! /bin/sh set -x -test -d ./config || mkdir ./config -aclocal -I config -libtoolize --force --copy -autoheader -automake --foreign --add-missing --copy -autoconf +autoreconf -ifv -I config