From patchwork Sun Sep 24 15:46:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 817928 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.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3y0Wmh1Mhqz9sRV for ; Mon, 25 Sep 2017 01:47:00 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7D6872C96A; Sun, 24 Sep 2017 15:46:57 +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 mkQdOFm92U4Z; Sun, 24 Sep 2017 15:46:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4F84F2C800; Sun, 24 Sep 2017 15:46:55 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 40E4D1CEB29 for ; Sun, 24 Sep 2017 15:46:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 311D7874AD for ; Sun, 24 Sep 2017 15:46:54 +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 tQ4yqZMdDZ6u for ; Sun, 24 Sep 2017 15:46:51 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) by fraxinus.osuosl.org (Postfix) with ESMTPS id EC73E873D6 for ; Sun, 24 Sep 2017 15:46:50 +0000 (UTC) Received: from fwd24.aul.t-online.de (fwd24.aul.t-online.de [172.20.26.129]) by mailout02.t-online.de (Postfix) with SMTP id 875E841806D9 for ; Sun, 24 Sep 2017 17:46:48 +0200 (CEST) Received: from fli4l.lan.fli4l (rIX0mMZGQhgQl6aWYwSDrvdB3DbdN-cgfQipEaKTAQtXAjFfbFMQL6SbK3AzONpQeJ@[79.228.20.52]) by fwd24.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dw97C-0ZvdCK0; Sun, 24 Sep 2017 17:46:42 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:59380 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dw97B-0006d5-Rr for buildroot@buildroot.org; Sun, 24 Sep 2017 17:46:42 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 24 Sep 2017 17:46:41 +0200 Message-Id: <20170924154641.14759-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: rIX0mMZGQhgQl6aWYwSDrvdB3DbdN-cgfQipEaKTAQtXAjFfbFMQL6SbK3AzONpQeJ X-TOI-MSGID: a9b5af5d-6ee1-4d1f-82df-8909faae8f81 Subject: [Buildroot] [PATCH 1/1] package/ngircd: fix pam support 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" Fix type introduced by https://git.buildroot.net/buildroot/commit/?id=13755ca3056e4793e483c2ec634c06ac017088d2 Fixes http://autobuild.buildroot.net/results/461/461fa08ef11dc4ae8074a2d634138e4fcfaa8d16/ Signed-off-by: Bernd Kuhls --- package/ngircd/ngircd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/ngircd/ngircd.mk b/package/ngircd/ngircd.mk index 37c4f87d43..9b330fab53 100644 --- a/package/ngircd/ngircd.mk +++ b/package/ngircd/ngircd.mk @@ -14,7 +14,7 @@ ifeq ($(BR2_PACKAGE_LINUX_PAM),y) NGIRCD_CONF_OPTS += --with-pam=$(STAGING_DIR)/usr NGIRCD_DEPENDENCIES += linux-pam else -NGIRCD_CONF_OPTS += --with-pam +NGIRCD_CONF_OPTS += --without-pam endif ifeq ($(BR2_PACKAGE_OPENSSL),y)