From 4e8e5577cf42f5dbf35e1fd6030897d21f737f9c Mon Sep 17 00:00:00 2001 From: George Clark Date: Sun, 10 Jan 2016 12:04:39 -0500 Subject: [PATCH] Item13883: Build docs for Release 2.1 This really ought to be configurable, or detected --- core/tools/build.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/tools/build.pl b/core/tools/build.pl index de59b93e2e..a818963ce8 100755 --- a/core/tools/build.pl +++ b/core/tools/build.pl @@ -443,14 +443,14 @@ sub stage_gendocs { print `cd $this->{basedir}/bin ; ./view -topic System.ReleaseHistory -skin plain | $this->{basedir}/tools/fix_local_links.pl > $this->{tmpDir}/ReleaseHistory.html`; print -`cd $this->{basedir}/bin ; ./view -topic System.ReleaseNotes02x00 -skin plain | $this->{basedir}/tools/fix_local_links.pl > $this->{tmpDir}/ReleaseNotes02x00.html`; +`cd $this->{basedir}/bin ; ./view -topic System.ReleaseNotes02x01 -skin plain | $this->{basedir}/tools/fix_local_links.pl > $this->{tmpDir}/ReleaseNotes02x01.html`; print `cd $this->{basedir}/bin ; ./view -topic System.UpgradeGuide -skin plain | $this->{basedir}/tools/fix_local_links.pl > $this->{tmpDir}/UpgradeGuide.html`; print `cd $this->{basedir}/bin ; ./view -topic System.InstallationGuide -skin plain | $this->{basedir}/tools/fix_local_links.pl > $this->{tmpDir}/INSTALL.html`; $this->filter_txt( - "$this->{tmpDir}/ReleaseNotes02x00.html", - "$this->{tmpDir}/ReleaseNotes02x00.html" + "$this->{tmpDir}/ReleaseNotes02x01.html", + "$this->{tmpDir}/ReleaseNotes02x01.html" ); print "Automatic documentation built\n"; }