diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-09-24 17:46:41 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-09-24 23:15:21 +0200 |
commit | 3f61400d2fc37ab54d266bde48c3b69261827f5d (patch) | |
tree | 32246375eb87a1188cb8f7bbfd85299f7a789667 | |
parent | 40f8a0134a70074db598d864a322c568f49d2e96 (diff) | |
download | buildroot-3f61400d2fc37ab54d266bde48c3b69261827f5d.tar.gz buildroot-3f61400d2fc37ab54d266bde48c3b69261827f5d.zip |
package/ngircd: fix pam support
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 <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ngircd/ngircd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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) |