From patchwork Tue Sep 19 05:17:52 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 815280 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xxB3R38kxz9s78 for ; Tue, 19 Sep 2017 15:18:09 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B44CA87395; Tue, 19 Sep 2017 05:18:06 +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 UqaPaogQUN6t; Tue, 19 Sep 2017 05:18:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id CA50A873A1; Tue, 19 Sep 2017 05:18:04 +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 CA24E1C07B7 for ; Tue, 19 Sep 2017 05:18:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C305588109 for ; Tue, 19 Sep 2017 05:18:02 +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 XwbI9jTwjShR for ; Tue, 19 Sep 2017 05:18:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTPS id A01FF880EE for ; Tue, 19 Sep 2017 05:18:00 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id 1A3B54401AD; Tue, 19 Sep 2017 08:17:57 +0300 (IDT) From: Baruch Siach To: buildroot@busybox.net Date: Tue, 19 Sep 2017 08:17:52 +0300 Message-Id: X-Mailer: git-send-email 2.14.1 Subject: [Buildroot] [PATCH] util-linux: add missing dynamic library dependency 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" Commit f52af619185 (util-linux: add menu items for login utilities) forgot to propagate the !BR2_STATIC_LIBS dependency of linux-pam to BR2_PACKAGE_UTIL_LINUX_LOGIN. Fix this. Fixes: http://autobuild.buildroot.net/results/e47/e472891a656e40f33081d9a5db1b1b6d71c1389f/ http://autobuild.buildroot.net/results/9e4/9e443720ca247292ea612851962c611a9bcd3450/ http://autobuild.buildroot.net/results/88f/88f4cecd7e2844701b0e75279c112e37283fc7f9/ Cc: Carlos Santos Signed-off-by: Baruch Siach Reviewed-by: Carlos Santos --- package/util-linux/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index 80aab881a0da..5a600c333db3 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -173,6 +173,7 @@ config BR2_PACKAGE_UTIL_LINUX_LOGIN bool "login" depends on BR2_ENABLE_LOCALE # linux-pam depends on BR2_USE_WCHAR # linux-pam + depends on !BR2_STATIC_LIBS # linux-pam depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam depends on BR2_USE_MMU # fork(), linux-pam select BR2_PACKAGE_LINUX_PAM