From patchwork Sun May 31 01:13:32 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "David VomLehn (dvomlehn)" X-Patchwork-Id: 27088 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n4V1DZYp020329 for ; Sun, 31 May 2009 01:13:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752485AbZEaBNc (ORCPT ); Sat, 30 May 2009 21:13:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752850AbZEaBNb (ORCPT ); Sat, 30 May 2009 21:13:31 -0400 Received: from sj-iport-5.cisco.com ([171.68.10.87]:28727 "EHLO sj-iport-5.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752383AbZEaBNb (ORCPT ); Sat, 30 May 2009 21:13:31 -0400 X-IronPort-AV: E=Sophos;i="4.41,277,1241395200"; d="scan'208";a="78447031" Received: from sj-dkim-2.cisco.com ([171.71.179.186]) by sj-iport-5.cisco.com with ESMTP; 31 May 2009 01:13:34 +0000 Received: from sj-core-5.cisco.com (sj-core-5.cisco.com [171.71.177.238]) by sj-dkim-2.cisco.com (8.12.11/8.12.11) with ESMTP id n4V1DWxE019765; Sat, 30 May 2009 18:13:32 -0700 Received: from cuplxvomd02.corp.sa.net ([64.101.20.155]) by sj-core-5.cisco.com (8.13.8/8.13.8) with ESMTP id n4V1DWpF004950; Sun, 31 May 2009 01:13:32 GMT Date: Sat, 30 May 2009 18:13:32 -0700 From: David VomLehn To: linux-doc@vger.kernel.org Cc: rdunlap@xenotime.net, linux-kbuild@vger.kernel.org, sam@ravnborg.org Subject: [PATCH] documentation:kbuild Incorrect makefile syntix in examnple Message-ID: <20090531011332.GA13205@cuplxvomd02.corp.sa.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; l=656; t=1243732412; x=1244596412; c=relaxed/simple; s=sjdkim2002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; i=dvomlehn@cisco.com; z=From:=20David=20VomLehn=20 |Subject:=20[PATCH]=20documentation=3Akbuild=20Incorrect=20 makefile=20syntix=20in=20examnple |Sender:=20; bh=89itSv7gUfK2MA1eje1YIFZMJd4Hj09BKhX/7m1DdQQ=; b=hzu5SjdsTnrkpnNWeJa8xeyw03HlcrnIqvILJ0yqR3E/6594nqly3hcpTI hUvNIsmDKOFTrcpZ4grVhcELYD9tSkestmcM9g3BSiOdD8WbS4wAD9EQzTU9 vgLh69FRzw; Authentication-Results: sj-dkim-2; header.From=dvomlehn@cisco.com; dkim=pass ( sig from cisco.com/sjdkim2002 verified; ); Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org There is an error in the make syntax for one of the kbuild examples. This fixes it. Signed-off-by: David VomLehn --- Documentation/kbuild/modules.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/Documentation/kbuild/modules.txt b/Documentation/kbuild/modules.txt index b1096da..0767cf6 100644 --- a/Documentation/kbuild/modules.txt +++ b/Documentation/kbuild/modules.txt @@ -275,7 +275,7 @@ following files: KERNELDIR := /lib/modules/`uname -r`/build all:: - $(MAKE) -C $KERNELDIR M=`pwd` $@ + $(MAKE) -C $(KERNELDIR) M=`pwd` $@ # Module specific targets genbin: