From patchwork Sun Oct 4 11:35:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 526105 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 1513814029C for ; Sun, 4 Oct 2015 22:35:20 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=WzTiiHCI; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 553B7317BC; Sun, 4 Oct 2015 11:35:19 +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 RYnecjQR6e9e; Sun, 4 Oct 2015 11:35:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 41A35312AE; Sun, 4 Oct 2015 11:35:18 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 13D681C1054 for ; Sun, 4 Oct 2015 11:35:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0E012883D9 for ; Sun, 4 Oct 2015 11:35:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lfoMsvmDOYwr for ; Sun, 4 Oct 2015 11:35:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0915C883B6 for ; Sun, 4 Oct 2015 11:35:14 +0000 (UTC) Received: by wicgb1 with SMTP id gb1so84248281wic.1 for ; Sun, 04 Oct 2015 04:35:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=dlLvMrqnHxvdSecmNtnKP0VZmeMz7UGpupVFGBIJ98M=; b=WzTiiHCISrdM0M/deoHJ67hVhS7ReBdZlQ6F9DmyerhSRpHqR+NTCTVG2gTB5lYgEx oZfUU5mgxJiG020EkZtEtIvM0kEgii9hYBXQj3u9N3IBO0zzBApL/G46sdCxtFfa52yS 2L8L81jjZV4Kl6eXIIoXzIaJRtS/CubnERJL0hh3h7MF5gEmqzQJj1KJGJEksPNPFdFZ rqg8sJytDscu/ZBDEveYTRYvnZs7dkKxfXwZT5Dw1rcQ8x+ZsI7o/281tz8CYDFswINX KeGBSSgVhmukavznIur3Sx0as3iIGBjZ97cACw7DT6T8lHveoFUCymeBxNstgIPU3dwx izXw== X-Received: by 10.194.234.40 with SMTP id ub8mr23991883wjc.95.1443958512643; Sun, 04 Oct 2015 04:35:12 -0700 (PDT) Received: from localhost.localdomain (LPoitiers-656-1-204-92.w80-11.abo.wanadoo.fr. [80.11.219.92]) by smtp.gmail.com with ESMTPSA id ki7sm21175564wjc.28.2015.10.04.04.35.10 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 04 Oct 2015 04:35:11 -0700 (PDT) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Sun, 4 Oct 2015 13:35:08 +0200 Message-Id: <1443958508-5943-1-git-send-email-maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 2.5.3 Cc: yann.morin.1998@free.fr Subject: [Buildroot] [PATCH v2] toolchain: Fix glibc breakage X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Introduced by previous patch 0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c, this printf would break the build of glibc, because there is no format to printf: printf: usage: printf [-v var] format [arguments] Signed-off-by Maxime Hadjinlian Reported-by: "Yann E. MORIN" Acked-by: "Yann E. MORIN" --- toolchain/helpers.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/toolchain/helpers.mk b/toolchain/helpers.mk index a4fa815..1452ec6 100644 --- a/toolchain/helpers.mk +++ b/toolchain/helpers.mk @@ -79,9 +79,7 @@ copy_toolchain_lib_root = \ fi ; \ LIBPATH="`readlink -f $${LIBPATH}`"; \ done; \ - done; \ -\ - printf + done # # Copy the full external toolchain sysroot directory to the staging