]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: 133545
authorAndrew G. Morgan <morgan@kernel.org>
Thu, 22 Feb 2001 04:58:51 +0000 (04:58 +0000)
committerAndrew G. Morgan <morgan@kernel.org>
Thu, 22 Feb 2001 04:58:51 +0000 (04:58 +0000)
Purpose of commit: documentation fix

Commit summary:
---------------
Make the directions for linking a module consistent.

CHANGELOG
doc/pam_modules.sgml

index 0acb2568e32b25cd47eb940eb1e77ad32e58c637..9bec8693ce4897abe7f7e3e1f56f27fcd21071fc 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -50,6 +50,7 @@ libpam. Prior versions were buggy - see bugfix for Bug 129775.
 
                           ** WARNING **
 
+* fix for module linking directions (Bug 133545 - agmorgan)
 * fix for glibc-2.2.2 compilation of pam_issue (Bug 133542 - agmorgan)
 * fix pam_userdb to make and link both .o files it needs - converse()
   wasn't being linked! (Bug 132880 - agmorgan)
index 6440b289788048292f9a78369409052457895305..71634e9f5d4207bb013a775e8713de2d7c96faa2 100644 (file)
@@ -49,7 +49,7 @@ DAMAGE.
 
 <title>The Linux-PAM Module Writers' Guide
 <author>Andrew G. Morgan, <tt>morgan@kernel.org</tt>
-<date>DRAFT v0.75 2001/02/10
+<date>DRAFT v0.75 2001/02/21
 <abstract>
 This manual documents what a programmer needs to know in order to
 write a module that conforms to the <bf/Linux-PAM/ standard. It also
@@ -68,7 +68,7 @@ programmer.
 #include <security/pam_modules.h>
 
 gcc -fPIC -c pam_module-name.c
-ld -x --shared -o pam_module-name.so pam_module-name.o -lpam
+ld -x --shared -o pam_module-name.so pam_module-name.o
 </verb>
 </tscreen>