From patchwork Wed Apr 3 13:06:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Squyres X-Patchwork-Id: 2387291 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id A5C57DFB79 for ; Wed, 3 Apr 2013 13:22:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760501Ab3DCNWd (ORCPT ); Wed, 3 Apr 2013 09:22:33 -0400 Received: from mtv-iport-2.cisco.com ([173.36.130.13]:1753 "EHLO mtv-iport-2.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758808Ab3DCNWc (ORCPT ); Wed, 3 Apr 2013 09:22:32 -0400 X-Greylist: delayed 565 seconds by postgrey-1.27 at vger.kernel.org; Wed, 03 Apr 2013 09:22:32 EDT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=596; q=dns/txt; s=iport; t=1364995352; x=1366204952; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=GFvm6sFCfQY1LWjw5QWLtUTMDQ1yLlF0XAnoPaQZa0Q=; b=kFoQlJPYf/6pFs6PJ2KuY78c0Dy5Tcaxc+7gvDK3YmSlmAIe1SlqE2v/ 7V/+9zmBgiK6gnqY5HXm9IgBZKgJh8aZfCeXC9cdAeA679tRk8w92RnOT WdpfiCT7e+tAA6otobj7tJCGYLbBMGB5MCV2ZyeT+EPKMZSfAxJ0q915X 4=; X-IronPort-AV: E=Sophos;i="4.87,401,1363132800"; d="scan'208";a="77733019" Received: from mtv-core-2.cisco.com ([171.68.58.7]) by mtv-iport-2.cisco.com with ESMTP; 03 Apr 2013 13:13:06 +0000 Received: from cisco.com (savbu-usnic-a.cisco.com [10.193.184.48]) by mtv-core-2.cisco.com (8.14.5/8.14.5) with ESMTP id r33DD6G8017309; Wed, 3 Apr 2013 13:13:06 GMT Received: by cisco.com (Postfix, from userid 182726) id 2027E3FAA584; Wed, 3 Apr 2013 06:13:06 -0700 (PDT) From: Jeff Squyres To: linux-rdma@vger.kernel.org Cc: umalhi@cisco.com, Jeff Squyres Subject: [PATCH 3/4] Use autoreconf in autogen.sh Date: Wed, 3 Apr 2013 06:06:54 -0700 Message-Id: <1364994415-8330-3-git-send-email-jsquyres@cisco.com> X-Mailer: git-send-email 1.8.1.1 In-Reply-To: <1364994415-8330-1-git-send-email-jsquyres@cisco.com> References: <1364994415-8330-1-git-send-email-jsquyres@cisco.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org 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. --- autogen.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index fd47839..6c9233e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,8 +1,4 @@ #! /bin/sh set -x -aclocal -I config -libtoolize --force --copy -autoheader -automake --foreign --add-missing --copy -autoconf +autoreconf -ifv -I config