Skip to content

Commit

Permalink
Fix link.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87355 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
kalibera committed Nov 21, 2024
1 parent ed0d98b commit 079a1fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion doc/manual/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@ version.texi: Makefile $(top_srcdir)/VERSION $(SVN_REV)
v="$${vv} (`sed -e 1d -e 's/^Last Changed Date: //' $(SVN_REV)`)"; \
$(ECHO) "@set VERSION $${v}" >> $@; \
rwv=`$(R_EXE) -f $(top_srcdir)/src/gnuwin32/fixed/rwver.R`; \
$(ECHO) "@set RWVERSION $${rwv}" >> $@ )
$(ECHO) "@set RWVERSION $${rwv}" >> $@; \
rwtv=`$(ECHO) $${rwv} | sed -e 's/\.[^.]\+$$//'` >> $@; \
$(ECHO) "@set RWTVERSION $${rwtv}" >> $@ )
@if test "$(R_PAPERSIZE)" = "a4"; then \
$(ECHO) "@afourpaper" >> $@ ; \
fi
Expand Down
4 changes: 3 additions & 1 deletion doc/manual/Makefile.win
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ version.texi: Makefile.win $(top_srcdir)/VERSION $(SVN_REV)
v="$${vv} (`sed -e 1d -e 's/^Last Changed Date: //' $(SVN_REV)`)"; \
$(ECHO) "@set VERSION $${v}" >> $@; \
rwv=$(shell ../../bin$(R_ARCH)/Rscript ../../src/gnuwin32/fixed/rwver.R); \
$(ECHO) "@set RWVERSION $${rwv}" >> $@ )
$(ECHO) "@set RWVERSION $${rwv}" >> $@; \
rwtv=`$(ECHO) $${rwv} | sed -e 's/\.[^.]\+$$//'`; \
$(ECHO) "@set RWTVERSION $${rwtv}" >> $@ )
@if test "$(R_PAPERSIZE)" = "a4"; then \
$(ECHO) "@afourpaper" >> $@ ; \
fi
Expand Down
8 changes: 4 additions & 4 deletions doc/manual/R-admin.texi
Original file line number Diff line number Diff line change
Expand Up @@ -1388,8 +1388,8 @@ The binary distribution of @R{} is currently built with tools
from
@uref{https://CRAN.R-project.org/bin/windows/Rtools/rtools44/rtools.html,Rtools44
for Windows}. See
@uref{https://CRAN.R-project.org/bin/windows/base/howto-R-devel.html, Building
R and packages} for more details on how to use it.
@uref{https://CRAN.R-project.org/bin/windows/base/howto-@value{RWTVERSION}.html,
Building @value{RWTVERSION} and packages on Windows} for more details on how to use it.

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

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

0 comments on commit 079a1fa

Please sign in to comment.