]> git.donarmstrong.com Git - cran2deb.git/blobdiff - trunk/exec/autobuild
because we are using wannabuild, we don't care about the dependency closure
[cran2deb.git] / trunk / exec / autobuild
index 0b24cba32edaff51fbce22e25f9d965e189193ba..21a4bec35fe08a226a6b9652af7cccf26944d012 100755 (executable)
@@ -2,12 +2,12 @@
 ## DOC: cran2deb autobuild
 ## DOC:     automatically builds all out of date packages.
 ## DOC:
-suppressMessages(library(cran2deb))
+suppressPackageStartupMessages(library(cran2deb))
 
 if (exists('argv')) { # check for littler
     db_update_package_versions()
     outdated <- db_outdated_packages()
-    build_order <- r_dependency_closure(outdated)
+    build_order <- outdated; #r_dependency_closure(outdated)
     notice('build order',paste(build_order,collapse=', '))
     for (pkg in build_order) {
         build(pkg,c())