Skip to content

Commit 079a1fa

Browse files
author
kalibera
committed
Fix link.
git-svn-id: https://svn.r-project.org/R/trunk@87355 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent ed0d98b commit 079a1fa

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

doc/manual/Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,9 @@ version.texi: Makefile $(top_srcdir)/VERSION $(SVN_REV)
211211
v="$${vv} (`sed -e 1d -e 's/^Last Changed Date: //' $(SVN_REV)`)"; \
212212
$(ECHO) "@set VERSION $${v}" >> $@; \
213213
rwv=`$(R_EXE) -f $(top_srcdir)/src/gnuwin32/fixed/rwver.R`; \
214-
$(ECHO) "@set RWVERSION $${rwv}" >> $@ )
214+
$(ECHO) "@set RWVERSION $${rwv}" >> $@; \
215+
rwtv=`$(ECHO) $${rwv} | sed -e 's/\.[^.]\+$$//'` >> $@; \
216+
$(ECHO) "@set RWTVERSION $${rwtv}" >> $@ )
215217
@if test "$(R_PAPERSIZE)" = "a4"; then \
216218
$(ECHO) "@afourpaper" >> $@ ; \
217219
fi

doc/manual/Makefile.win

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@ version.texi: Makefile.win $(top_srcdir)/VERSION $(SVN_REV)
171171
v="$${vv} (`sed -e 1d -e 's/^Last Changed Date: //' $(SVN_REV)`)"; \
172172
$(ECHO) "@set VERSION $${v}" >> $@; \
173173
rwv=$(shell ../../bin$(R_ARCH)/Rscript ../../src/gnuwin32/fixed/rwver.R); \
174-
$(ECHO) "@set RWVERSION $${rwv}" >> $@ )
174+
$(ECHO) "@set RWVERSION $${rwv}" >> $@; \
175+
rwtv=`$(ECHO) $${rwv} | sed -e 's/\.[^.]\+$$//'`; \
176+
$(ECHO) "@set RWTVERSION $${rwtv}" >> $@ )
175177
@if test "$(R_PAPERSIZE)" = "a4"; then \
176178
$(ECHO) "@afourpaper" >> $@ ; \
177179
fi

doc/manual/R-admin.texi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1388,8 +1388,8 @@ The binary distribution of @R{} is currently built with tools
13881388
from
13891389
@uref{https://CRAN.R-project.org/bin/windows/Rtools/rtools44/rtools.html,Rtools44
13901390
for Windows}. See
1391-
@uref{https://CRAN.R-project.org/bin/windows/base/howto-R-devel.html, Building
1392-
R and packages} for more details on how to use it.
1391+
@uref{https://CRAN.R-project.org/bin/windows/base/howto-@value{RWTVERSION}.html,
1392+
Building @value{RWTVERSION} and packages on Windows} for more details on how to use it.
13931393

13941394
The toolset includes compilers (currently GCC version 13.2.0 with
13951395
selected additional patches) and runtime libraries from
@@ -2074,8 +2074,8 @@ code, and @code{install.packages(type="source")} will work for such
20742074
packages. Those with compiled code need the tools (see @ref{The Windows
20752075
toolset}). The tools are found automatically by @R{} when installed by
20762076
the toolset installer. See
2077-
@uref{https://cran.r-project.org/bin/windows/base/howto-R-devel.html,Building
2078-
R and packages} for more details.
2077+
@uref{https://cran.r-project.org/bin/windows/base/howto-@value{RWTVERSION}.html,
2078+
Building @value{RWTVERSION} and packages on Windows} for more details.
20792079

20802080
Occasional permission problems after unpacking source packages have been
20812081
seen on some systems: these have been circumvented by setting the

0 commit comments

Comments
 (0)