diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-05-02 12:58:11 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-05-08 12:06:41 -0400 |
commit | 354c317ea40844ae48679b295f4d32417371ec70 (patch) | |
tree | 9c0d8a88590dfee8445e90761b6922a3ad0bb2f6 | |
parent | cf758b396026089fe2684afcc5ccd6bd3b7923c0 (diff) | |
download | gdb-354c317ea40844ae48679b295f4d32417371ec70.zip gdb-354c317ea40844ae48679b295f4d32417371ec70.tar.gz gdb-354c317ea40844ae48679b295f4d32417371ec70.tar.bz2 |
binutils: update release docs process
Now that we generate multiple html & pdf forms, update the release
process to show how they get updated.
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/README-how-to-make-a-release | 38 |
2 files changed, 26 insertions, 16 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 2c6b427..88cbccd 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,9 @@ 2021-05-08 Mike Frysinger <vapier@gentoo.org> + * README-how-to-make-a-release: Update html & pdf entries. + +2021-05-08 Mike Frysinger <vapier@gentoo.org> + * doc/Makefile.am (html-local, binutils/index.html): New targets. * doc/Makefile.in: Regenerate. diff --git a/binutils/README-how-to-make-a-release b/binutils/README-how-to-make-a-release index ea8a5a1..9e704b2 100644 --- a/binutils/README-how-to-make-a-release +++ b/binutils/README-how-to-make-a-release @@ -247,7 +247,7 @@ When the time comes to actually make the release.... make install-gas install-gold install-ld install-binutils # Needed for step 29... - make html + make html pdf 26. Tag the branch with the new release number: @@ -296,11 +296,7 @@ When the time comes to actually make the release.... cd /sourceware/www/sourceware/htdocs/binutils mkdir docs-2.3x cd docs-2.3x - mkdir as - mkdir bfd - mkdir binutils - mkdir gprof - mkdir ld + mkdir as bfd binutils gprof ld cd ../docs-2.3(x-1) get index.html @@ -316,20 +312,30 @@ When the time comes to actually make the release.... however, so the directories had to be made by hand, as shown above). cd as - lcd <build-dir>/gas/doc/as.html - put * {be patient - this takes a long time...} + lcd <build-dir>/gas/doc/ + put -R as {be patient - this takes a long time...} + put as.html + put as.pdf cd ../bfd - lcd ../../../bfd/doc/bfd.html - put * + lcd ../../../bfd/doc/ + put -R bfd + put bfd.html + put bfd.pdf cd ../binutils - lcd ../../../binutils/doc/binutils.html - put * + lcd ../../../binutils/doc/ + put -R binutils + put binutils.html + put binutils.pdf cd ../gprof - lcd ../../../gprof/gprof.html - put * + lcd ../../../gprof/ + put -R doc/gprof + put gprof.html + put gprof.pdf cd ../ld - lcd ../../ld/ld.html - put * + lcd ../../ld/ + put -R doc/ld + put ld.html + put ld.pdf Edit the top level binutils index.html file to change the links to point to the new documentation. |