From 2e990c23492c002ba59daffe01be9d0051effa1f Mon Sep 17 00:00:00 2001 From: "Andrew G. Morgan" Date: Sun, 8 Oct 2000 20:43:49 +0000 Subject: [PATCH] Relevant BUGIDs: 116380 Purpose of commit: bugfix Commit summary: --------------- modules shouldn't be built with -lpam as it causes problems for first time installs. --- modules/pam_mkhomedir/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0