[Rcpp-commits] r2631 - in pkg/RcppGSL/inst: doc/RcppGSL skeleton
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Nov 30 21:02:07 CET 2010
Author: edd
Date: 2010-11-30 21:02:06 +0100 (Tue, 30 Nov 2010)
New Revision: 2631
Modified:
pkg/RcppGSL/inst/doc/RcppGSL/RcppGSL.Rnw
pkg/RcppGSL/inst/skeleton/configure.win
Log:
fixed in typo in configure.win and vignette
Modified: pkg/RcppGSL/inst/doc/RcppGSL/RcppGSL.Rnw
===================================================================
--- pkg/RcppGSL/inst/doc/RcppGSL/RcppGSL.Rnw 2010-11-30 19:48:23 UTC (rev 2630)
+++ pkg/RcppGSL/inst/doc/RcppGSL/RcppGSL.Rnw 2010-11-30 20:02:06 UTC (rev 2631)
@@ -602,8 +602,8 @@
\subsubsection{Using functions provided by RcppGSL}
-\pkg{RcppGSL} provides R functions that allows one to retrieve the same
-information. Therefore the configure script can also be written as:
+\pkg{RcppGSL} provides R functions that allows one to retrieve the same
+information. Therefore the configure script can also be written as:
<<lang=bash>>=
#!/bin/sh
@@ -618,7 +618,7 @@
src/Makevars.in > src/Makevars
@
-Similarly, the configure.win for windows can be written as:
+Similarly, the configure.win for windows can be written as:
<<lang=bash>>=
GSL_CFLAGS=`${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe -e "RcppGSL:::CFlags()"`
@@ -626,7 +626,7 @@
RCPP_LDFLAGS=`${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe -e "Rcpp:::LdFlags()"`
sed -e "s|@GSL_LIBS@|${GSL_LIBS}|" \
- -e "s|@GSL_CFLAGS@|${GSL_CFLAGS}|" |
+ -e "s|@GSL_CFLAGS@|${GSL_CFLAGS}|" \
-e "s|@RCPP_LDFLAGS@|${RCPP_LDFLAGS}|" \
src/Makevars.in > src/Makevars.win
@
@@ -738,8 +738,8 @@
print(foo(M))
@
-The \texttt{RcppGSL} inline plugin supports creation of a package skeleton
-based on the inline function.
+The \texttt{RcppGSL} inline plugin supports creation of a package skeleton
+based on the inline function.
<<eval=FALSE>>=
package.skeleton( "mypackage", foo )
Modified: pkg/RcppGSL/inst/skeleton/configure.win
===================================================================
--- pkg/RcppGSL/inst/skeleton/configure.win 2010-11-30 19:48:23 UTC (rev 2630)
+++ pkg/RcppGSL/inst/skeleton/configure.win 2010-11-30 20:02:06 UTC (rev 2631)
@@ -3,7 +3,7 @@
RCPP_LDFLAGS=`${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe -e "Rcpp:::LdFlags()"`
sed -e "s|@GSL_LIBS@|${GSL_LIBS}|" \
- -e "s|@GSL_CFLAGS@|${GSL_CFLAGS}|" |
+ -e "s|@GSL_CFLAGS@|${GSL_CFLAGS}|" \
-e "s|@RCPP_LDFLAGS@|${RCPP_LDFLAGS}|" \
src/Makevars.in > src/Makevars.win
More information about the Rcpp-commits
mailing list