From patchwork Wed Dec 17 21:47:37 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 422383 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 8C05A1400F1 for ; Thu, 18 Dec 2014 08:47:47 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CA50030A04; Wed, 17 Dec 2014 21:47:46 +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 UHKp7eF+9cBz; Wed, 17 Dec 2014 21:47:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 476DE2FDBE; Wed, 17 Dec 2014 21:47:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 0074A1C2236 for ; Wed, 17 Dec 2014 21:47:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id EF337A0730 for ; Wed, 17 Dec 2014 21:47:44 +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 XbfV9a1vklkn for ; Wed, 17 Dec 2014 21:47:44 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1F7ACA068E for ; Wed, 17 Dec 2014 21:47:44 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id E8C475E5; Wed, 17 Dec 2014 22:47:52 +0100 (CET) Received: from localhost (AToulouse-657-1-1003-5.w90-55.abo.wanadoo.fr [90.55.205.5]) by mail.free-electrons.com (Postfix) with ESMTPSA id 9B12FF; Wed, 17 Dec 2014 22:47:52 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Wed, 17 Dec 2014 22:47:37 +0100 Message-Id: <1418852858-818-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.1.0 Cc: Thomas Petazzoni Subject: [Buildroot] [buildroot-test 1/2] Taking into account BR2_PREFER_STATIC_LIB rename 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" In Buildroot, the BR2_PREFER_STATIC_LIB option was renamed to BR2_STATIC_LIBS. This commit takes this into account when generating the autobuild configurations. Signed-off-by: Thomas Petazzoni --- scripts/autobuild-run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/autobuild-run b/scripts/autobuild-run index 4d9ef90..ce89e1e 100755 --- a/scripts/autobuild-run +++ b/scripts/autobuild-run @@ -348,7 +348,7 @@ def gen_config(instance, log, sysinfo): elif randint(0, 20) == 0: configlines.append("BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y\n") if config["libc"] != "glibc" and randint(0, 20) == 0: - configlines.append("BR2_PREFER_STATIC_LIB=y\n") + configlines.append("BR2_STATIC_LIBS=y\n") # Write out the configuration file with open(os.path.join(outputdir, ".config"), "w+") as configf: