diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-02-18 03:03:31 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-02-18 03:03:31 +0000 |
commit | fe18f187e6553f814d45f714b35e19011b1014b4 (patch) | |
tree | ece2fb807a9b69c1e6643832612b89c44c78c4ce | |
parent | 585361e3edda12751c3620012fc70d68984b7d8d (diff) | |
download | pam-fe18f187e6553f814d45f714b35e19011b1014b4.tar.gz pam-fe18f187e6553f814d45f714b35e19011b1014b4.tar.bz2 pam-fe18f187e6553f814d45f714b35e19011b1014b4.zip |
Relevant BUGIDs: 132880
Purpose of commit: bugfix
Commit summary:
---------------
wasn't linking conv.o into the module.
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | modules/pam_userdb/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -50,6 +50,8 @@ libpam. Prior versions were buggy - see bugfix for Bug 129775. ** WARNING ** +* fix pam_userdb to make and link both .o files it needs - converse() + wasn't being linked! (Bug 132880 - agmorgan) * added some sys-admin documentation for the pam_tally module (Bug 126210 - agmorgan). * added a link to module examples from the module writers doc (Bug diff --git a/modules/pam_userdb/Makefile b/modules/pam_userdb/Makefile index aeee0c03..40687f8d 100644 --- a/modules/pam_userdb/Makefile +++ b/modules/pam_userdb/Makefile @@ -28,6 +28,8 @@ include ../dont_makefile else +MODULE_SIMPLE_EXTRAFILES = conv + include ../Simple.Rules endif |