diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-01-22 08:03:01 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-01-22 08:03:01 +0000 |
commit | b89c0d4ccae2f48cfa1e28423e2fe86e1d435ec5 (patch) | |
tree | 75b9298ff2838f6e433afc58f35e9a598c608745 | |
parent | ec6d77b384ea083cb69a1d6df91c875eee2d1228 (diff) | |
download | pam-b89c0d4ccae2f48cfa1e28423e2fe86e1d435ec5.tar.gz pam-b89c0d4ccae2f48cfa1e28423e2fe86e1d435ec5.tar.bz2 pam-b89c0d4ccae2f48cfa1e28423e2fe86e1d435ec5.zip |
Relevant BUGIDs: 129644
Purpose of commit: start next release
Commit summary:
---------------
I've bumped the version number, and added some Makefile code
for helping me make documentation releases.
-rw-r--r-- | CHANGELOG | 3 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | doc/Makefile | 9 |
4 files changed, 14 insertions, 2 deletions
@@ -35,6 +35,9 @@ Where you should replace XXXXX with a bug-id. 0.75: please submit patches for this section with actual code/doc patches! +* bumped the version number, and added some code to assist in making + documentation releases (Bug 129644 - agmorgan). + 0.74: Sun Jan 21 22:36:08 PST 2001 * made 0.74 release (Bug 129642 - agmorgan) @@ -558,7 +558,7 @@ fi LIBPAM_VERSION_MAJOR=0 -LIBPAM_VERSION_MINOR=74 +LIBPAM_VERSION_MINOR=75 diff --git a/configure.in b/configure.in index 2fc81853..69831bfc 100644 --- a/configure.in +++ b/configure.in @@ -9,7 +9,7 @@ dnl Release specific dnl LIBPAM_VERSION_MAJOR=0 -LIBPAM_VERSION_MINOR=74 +LIBPAM_VERSION_MINOR=75 AC_SUBST(LIBPAM_VERSION_MAJOR) AC_SUBST(LIBPAM_VERSION_MINOR) diff --git a/doc/Makefile b/doc/Makefile index 21ae3de2..62702cc8 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -126,6 +126,13 @@ endif install -m 644 $$file $(FAKEROOT)$(MANDIR)/man8 ; \ done +spec: + cd specs/formatter && make + specs/formatter/padout < specs/draft-morgan-pam.raw > specs/draft-morgan-pam-current.txt + +releasedocs: all spec + tar zvfc Linux-PAM-$(MAJOR_REL).$(MINOR_REL)-docs.tar.gz --exclude CVS html ps txts specs/draft-morgan-pam-current.txt + clean: rm -f *~ *.bak rm -f html/pam*.html @@ -133,4 +140,6 @@ clean: rm -f $(TEXTS) rm -f $(PSFILES) ps/missfont.log rm -f MODULES-SGML pam.sgml + rm -f specs/draft-morgan-pam-current.txt + make -C specs/formatter clean |