summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2000-10-08 20:43:49 +0000
committerAndrew G. Morgan <morgan@kernel.org>2000-10-08 20:43:49 +0000
commit2e990c23492c002ba59daffe01be9d0051effa1f (patch)
tree556ecce68dd857fb8b5a14133d66a520038ddb96 /modules
parentd79d8183d9bda40499a2c2f7f0f2f9b896017031 (diff)
Relevant BUGIDs: 116380
Purpose of commit: bugfix Commit summary: --------------- modules shouldn't be built with -lpam as it causes problems for first time installs.
Diffstat (limited to 'modules')
-rw-r--r--modules/pam_mkhomedir/Makefile2
1 files changed, 1 insertions, 1 deletions
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