From patchwork Tue Jan 29 12:36:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 1032725 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=orange.com Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43pmPL1Zzfz9sMr for ; Tue, 29 Jan 2019 23:43:01 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 12FC225AA6; Tue, 29 Jan 2019 12:42:59 +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 qeMN-1rUNDTj; Tue, 29 Jan 2019 12:42:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1E2A42442C; Tue, 29 Jan 2019 12:42:57 +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 CBB371BF869 for ; Tue, 29 Jan 2019 12:42:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C8D6D86824 for ; Tue, 29 Jan 2019 12:42:55 +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 QAPFPkaiy2rd for ; Tue, 29 Jan 2019 12:42:54 +0000 (UTC) X-Greylist: delayed 00:06:32 by SQLgrey-1.7.6 Received: from orange.com (mta136.mail.business.static.orange.com [80.12.70.36]) by whitealder.osuosl.org (Postfix) with ESMTPS id 893E98681A for ; Tue, 29 Jan 2019 12:42:54 +0000 (UTC) Received: from opfednr06.francetelecom.fr (unknown [xx.xx.xx.70]) by opfednr27.francetelecom.fr (ESMTP service) with ESMTP id 43pmFc5V24z4wvK; Tue, 29 Jan 2019 13:36:20 +0100 (CET) Received: from Exchangemail-eme2.itn.ftgroup (unknown [xx.xx.31.34]) by opfednr06.francetelecom.fr (ESMTP service) with ESMTP id 43pmFc4dZwzDq7Q; Tue, 29 Jan 2019 13:36:20 +0100 (CET) Received: from r-lnx-nyma7486-2.rd.francetelecom.fr (10.168.234.6) by OPEXCLILM6F.corporate.adroot.infra.ftgroup (10.114.31.34) with Microsoft SMTP Server id 14.3.408.0; Tue, 29 Jan 2019 13:36:16 +0100 From: To: Date: Tue, 29 Jan 2019 13:36:08 +0100 X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-Originating-IP: [10.168.234.6] Message-ID: <31287_1548765380_5C5048C4_31287_396_1_f8e0aabc-6c1f-4878-b75e-c8bbc4e1a17e@OPEXCLILM6F.corporate.adroot.infra.ftgroup> Subject: [Buildroot] [PATCH] package/busybox: drop empty configure command X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Yann MORIN , "Yann E. MORIN" , Adam Duskett Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Since commit 50dc350c65 (package/busybox: update to 1.29.0), we no longer define the BUSYBOX_NOCLOBBER_INSTALL macro, so it expands to an empty string, so we end up with no action in BUSYBOX_CONFIGURE_CMDS. Drop BUSYBOX_CONFIGURE_CMDS now that it serves no purpose. Signed-off-by: Yann MORIN Cc: "Yann E. MORIN" Cc: Adam Duskett Cc: Carlos Santos --- package/busybox/busybox.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk index bfcca6ed3e..5c5a8ea839 100644 --- a/package/busybox/busybox.mk +++ b/package/busybox/busybox.mk @@ -323,10 +323,6 @@ define BUSYBOX_KCONFIG_FIXUP_CMDS $(BUSYBOX_SET_INDIVIDUAL_BINARIES) endef -define BUSYBOX_CONFIGURE_CMDS - $(BUSYBOX_NOCLOBBER_INSTALL) -endef - define BUSYBOX_BUILD_CMDS $(BUSYBOX_MAKE_ENV) $(MAKE) $(BUSYBOX_MAKE_OPTS) -C $(@D) endef