From: Andrew G. Morgan Date: Sun, 8 Oct 2000 20:43:49 +0000 (+0000) Subject: Relevant BUGIDs: 116380 X-Git-Tag: Linux-PAM-0-73~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e990c23492c002ba59daffe01be9d0051effa1f;p=linux-pam Relevant BUGIDs: 116380 Purpose of commit: bugfix Commit summary: --------------- modules shouldn't be built with -lpam as it causes problems for first time installs. --- diff --git a/modules/pam_mkhomedir/Makefile b/modules/pam_mkhomedir/Makefile index 7c9f5d3a..fa79b489 100644 --- a/modules/pam_mkhomedir/Makefile +++ b/modules/pam_mkhomedir/Makefile @@ -61,7 +61,7 @@ ifdef DYNAMIC $(LIBOBJD): $(LIBSRC) $(LIBSHARED): $(LIBOBJD) - $(LD_D) -o $@ $(LIBOBJD) $(LINKLIBS) -lpam + $(LD_D) -o $@ $(LIBOBJD) $(LINKLIBS) endif ifdef STATIC