diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-07-24 15:47:40 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-07-24 15:47:40 +0000 |
commit | 65b0aeaecd75e081993c48db2837958073185165 (patch) | |
tree | e65fd19ffeaa53bb0212a5cf49bd5671e15cc954 /doc/Makefile.am | |
parent | c938ec2c5c0a796c4a69b8946884a49e266bdea2 (diff) | |
download | pam-65b0aeaecd75e081993c48db2837958073185165.tar.gz pam-65b0aeaecd75e081993c48db2837958073185165.tar.bz2 pam-65b0aeaecd75e081993c48db2837958073185165.zip |
Relevant BUGIDs:
Purpose of commit: bugfixes
Commit summary:
---------------
2006-07-24 Thorsten Kukuk <kukuk@thkukuk.de>
* doc/adg/Makefile.am: Add uninstall and distclean rules.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
2006-07-08 Daniel Richard G. <skunk@iskunk.org>
* conf/pam_conv1/Makefile.am: Fix rules for lex and yacc files.
* conf/pam_conv1/pam_conv.lex: Rename to ...
* conf/pam_conv1/pam_conv_l.l: ... this.
* conf/pam_conv1/pam_conv.y: Rename to ...
* conf/pam_conv1/pam_conv_y.y: ... this.
* configure.in: Add AC_HELP_STRING()s to various AC_ARG_ENABLE()
calls.
* doc/Makefile.am: Fix rule to install index.html.
* doc/adg/Makefile.am: Fix test usage.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
* doc/specs/Makefile.am: Fix rules for lex and yacc files.
* specs/parse.lex: Rename to ...
* doc/specs/parse_l.l: ... this.
* doc/specs/parse.y: Rename to ...
* doc/specs/parse_y.y: ... this.
* libpam/pam_account.c: Fix #if vs. #ifdef.
* libpam/pam_audit.c: Likewise.
* libpam/pam_auth.c: Likewise.
* libpam/pam_password.c: Likewise.
* libpam/pam_private.h: Likewise.
* libpam/pam_session.c: Likewise.
* libpam/pam_start.c: Likewise.
* libpam/pam_static.c: Fix "empty sourcefile" warning.
* modules/pam_limits/pam_limits.c: Check for __linux, too.
* modules/pam_userdb/Makefile.am: Don't run test if no
libdb available.
* tests/tst-dlopen.c: Include config.h.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 31085a5c..a1155184 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -6,13 +6,11 @@ SUBDIRS = man specs sag adg mwg CLEANFILES = *~ -EXTRA_DIST = index.html +htmldir = $(DOCDIR)/html -####################################################### +dist_html_DATA = index.html -install-data-local: - $(mkinstalldirs) $(DESTDIR)$(DOCDIR)/html - install -m 644 $(srcdir)/index.html $(DESTDIR)$(DOCDIR)/html/ +####################################################### releasedocs: all $(mkinstalldirs) $(top_builddir)/Linux-PAM-$(VERSION)/doc/specs |