From patchwork Thu Jul 24 17:49:29 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas De Schampheleire X-Patchwork-Id: 373475 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 02934140219 for ; Fri, 25 Jul 2014 03:50:53 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1355E8B617; Thu, 24 Jul 2014 17:50:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id feT1kclshqR0; Thu, 24 Jul 2014 17:50:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 02C698B14F; Thu, 24 Jul 2014 17:50:50 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id B6E911C28CA for ; Thu, 24 Jul 2014 17:50:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B19C126C92 for ; Thu, 24 Jul 2014 17:50:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vssG5rIA2cRz for ; Thu, 24 Jul 2014 17:50:45 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f174.google.com (mail-we0-f174.google.com [74.125.82.174]) by silver.osuosl.org (Postfix) with ESMTPS id D605E3182A for ; Thu, 24 Jul 2014 17:50:44 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id x48so3091186wes.19 for ; Thu, 24 Jul 2014 10:50:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:content-transfer-encoding:subject :message-id:in-reply-to:references:user-agent:date:from:to:cc; bh=kVLr+IKNBZJP33P+Ay7zw6NBSbZJBcEU719n3if5t6o=; b=ANrlf6eTGp81K2AIup84UTqNlDrNn6pcfqJWzv9Lw77Sy+zSKxKedmMKRTH/U1T3e5 QnDdk2AGkLodjvVdacgIlNqaaQ9j8VapIMuw1rOoaGOXgReKiLzrAqtfyqedBmGvWEci vfKPFKhWD3ZRxpPLkqO1JfHQ5DZU1jGuEnpSA8Cxe/t+dadGDm80SNDie8sqp0j6d6LQ VUI4evpCzOH/oxIa2OYkBZ3NoYktFqCxVIX0IMILuHt57HCp/K0giqbUoZ544vce2wfb J+lvBCBV8NrS1ltdlzk85DJdgJ5aEXGbKsopNDFT2sx8xUMZF1HxXmaQEjQqJE67W1AU cpnw== X-Received: by 10.180.106.66 with SMTP id gs2mr15456361wib.5.1406224241954; Thu, 24 Jul 2014 10:50:41 -0700 (PDT) Received: from [127.0.0.1] ([109.140.129.55]) by mx.google.com with ESMTPSA id gc8sm25348272wic.3.2014.07.24.10.50.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 24 Jul 2014 10:50:41 -0700 (PDT) MIME-Version: 1.0 X-Mercurial-Node: 7c00a2ad37245845229c161f540e2e3dbdc593b0 Message-Id: <7c00a2ad37245845229c.1406224169@localhost> In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.7.2 Date: Thu, 24 Jul 2014 19:49:29 +0200 From: Thomas De Schampheleire To: buildroot@buildroot.org Cc: thomas.petazzoni@free-electrons.com, "Yann E. MORIN" Subject: [Buildroot] [PATCH 2 of 7] uclibc: use $(MAKE) iso $(MAKE1) for menuconfig target 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net There is no real reason to run uclibc-menuconfig in non-parallel mode, even though one can neither expect performance benefits from a parallel menuconfig. Nevertheless, $(MAKE) is the default, so this patch removes the unnecessary non-default $(MAKE1) usage for uclibc-menuconfig. This is a simplification introduced in preparation of the kconfig-package infrastructure. Signed-off-by: Thomas De Schampheleire --- package/uclibc/uclibc.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff -r c9dcec875ddb -r 7c00a2ad3724 package/uclibc/uclibc.mk --- a/package/uclibc/uclibc.mk Mon Jun 30 21:08:13 2014 +0200 +++ b/package/uclibc/uclibc.mk Wed Jul 23 21:12:48 2014 +0200 @@ -543,7 +543,7 @@ $(UCLIBC_TARGET_CONFIGURE): $(UCLIBC_DIR)/.stamp_config_fixup_done uclibc-menuconfig: $(UCLIBC_DIR)/.config - $(MAKE1) -C $(UCLIBC_DIR) \ + $(MAKE) -C $(UCLIBC_DIR) \ $(UCLIBC_MAKE_FLAGS) \ PREFIX=$(STAGING_DIR) \ DEVEL_PREFIX=/usr/ \