diff options
author | Tomas Mraz <tm@t8m.info> | 2005-09-26 19:35:39 +0000 |
---|---|---|
committer | Tomas Mraz <tm@t8m.info> | 2005-09-26 19:35:39 +0000 |
commit | e7a4b3ae9b1f401c40cfb01733193c5b8ee7f320 (patch) | |
tree | 0e558676babea6ca2b2abe93bda719858002d86d /doc | |
parent | 2768b9a8fb819bfe5fe51a2affb2d2b8dcf1f1d5 (diff) | |
download | pam-e7a4b3ae9b1f401c40cfb01733193c5b8ee7f320.tar.gz pam-e7a4b3ae9b1f401c40cfb01733193c5b8ee7f320.tar.bz2 pam-e7a4b3ae9b1f401c40cfb01733193c5b8ee7f320.zip |
Relevant BUGIDs:
Purpose of commit: cleanup
Commit summary:
---------------
2005-09-26 Tomas Mraz <t8m@centrum.cz>
* NEWS: Add a few missing entries from CHANGELOG.
* AUTHORS: Fixed entries for Toady and me
* Makefile.am (M4_FILES): Fixed out of tree build.
* doc/specs/Makefile.am (EXTRA_DIST): Removed lex.yy.c
(spec, lex.yy.c): Fixed out of tree build.
* modules/pam_userdb/README: Document try_first_pass and
use_first_pass options, remove use_authtok option.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/specs/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/specs/Makefile.am b/doc/specs/Makefile.am index 749f0ba7..dc4171c2 100644 --- a/doc/specs/Makefile.am +++ b/doc/specs/Makefile.am @@ -4,12 +4,12 @@ CLEANFILES = draft-morgan-pam-current.txt *~ -EXTRA_DIST = draft-morgan-pam.raw std-agent-id.raw rfc86.0.txt lex.yy.c +EXTRA_DIST = draft-morgan-pam.raw std-agent-id.raw rfc86.0.txt all: padout spec spec: draft-morgan-pam.raw - ./padout < draft-morgan-pam.raw > draft-morgan-pam-current.txt + ./padout < $(srcdir)/draft-morgan-pam.raw > draft-morgan-pam-current.txt noinst_PROGRAMS = padout @@ -19,5 +19,5 @@ padout_LDADD = @LEXLIB@ parse.c: lex.yy.c -lex.yy.c: parse.lex - $(LEX) parse.lex +lex.yy.c: $(srcdir)/parse.lex + $(LEX) $(srcdir)/parse.lex |