]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: 116380
authorAndrew G. Morgan <morgan@kernel.org>
Sun, 8 Oct 2000 20:43:49 +0000 (20:43 +0000)
committerAndrew G. Morgan <morgan@kernel.org>
Sun, 8 Oct 2000 20:43:49 +0000 (20:43 +0000)
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

index 7c9f5d3a31c14f0241e09aa1f41020c9929c1bba..fa79b489f72bbe6e188ee693261e5abb6fa673b2 100644 (file)
@@ -61,7 +61,7 @@ ifdef DYNAMIC
 $(LIBOBJD): $(LIBSRC)
 
 $(LIBSHARED):  $(LIBOBJD)
-               $(LD_D) -o $@ $(LIBOBJD) $(LINKLIBS) -lpam
+               $(LD_D) -o $@ $(LIBOBJD) $(LINKLIBS)
 endif
 
 ifdef STATIC