diff options
Diffstat (limited to 'g_cran')
-rw-r--r-- | g_cran/phases.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g_cran/phases.py b/g_cran/phases.py index e982293..59dd683 100644 --- a/g_cran/phases.py +++ b/g_cran/phases.py @@ -21,7 +21,7 @@ def src_compile(env,local_repository): #tmp_target is a dummy directory to make R CMD INSTALL function nicely tmp_target=os.path.join(env['WORKDIR'],'tmp_install') os.makedirs(tmp_target) - returnval=verbose_system("R CMD INSTALL --no-test-load --build "+tarball+" -l "+tmp_target) + returnval=verbose_system("R CMD INSTALL --build "+tarball+" -l "+tmp_target) if returnval: raise RuntimeError("R build failed") |