diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2000-10-08 20:43:49 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2000-10-08 20:43:49 +0000 |
commit | 2e990c23492c002ba59daffe01be9d0051effa1f (patch) | |
tree | 556ecce68dd857fb8b5a14133d66a520038ddb96 /modules/pam_mkhomedir | |
parent | d79d8183d9bda40499a2c2f7f0f2f9b896017031 (diff) | |
download | pam-2e990c23492c002ba59daffe01be9d0051effa1f.tar.gz pam-2e990c23492c002ba59daffe01be9d0051effa1f.tar.bz2 pam-2e990c23492c002ba59daffe01be9d0051effa1f.zip |
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/pam_mkhomedir')
-rw-r--r-- | modules/pam_mkhomedir/Makefile | 2 |
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 |