diff options
author | Auke Booij (tulcod) <auke@tulcod.com> | 2010-07-08 23:18:36 +0200 |
---|---|---|
committer | Auke Booij (tulcod) <auke@tulcod.com> | 2010-07-08 23:27:20 +0200 |
commit | 4c487c680ec7751f1802d8f386de3d6a260c3c7b (patch) | |
tree | 4fbcce6c9fdfcbce8a11ef285133e4673c24dd8d /g_cran | |
parent | Fix installation of bioconductor packages (diff) | |
download | g-cran-4c487c680ec7751f1802d8f386de3d6a260c3c7b.tar.gz g-cran-4c487c680ec7751f1802d8f386de3d6a260c3c7b.tar.bz2 g-cran-4c487c680ec7751f1802d8f386de3d6a260c3c7b.zip |
Fix installation of bioconductor packages
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") |