From: blundellc Date: Sat, 13 Sep 2008 13:27:46 +0000 (+0000) Subject: typo: build->bin, correctly report forced binary dependencies. X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=95c7a11e48a31ef29413bdb1de043cba243e9cfe;p=cran2deb.git typo: build->bin, correctly report forced binary dependencies. git-svn-id: svn://svn.r-forge.r-project.org/svnroot/cran2deb@133 edb9625f-4e0d-4859-8d74-9fd3b1da38cb --- diff --git a/pkg/trunk/R/debcontrol.R b/pkg/trunk/R/debcontrol.R index be7eb86..b5ea356 100644 --- a/pkg/trunk/R/debcontrol.R +++ b/pkg/trunk/R/debcontrol.R @@ -24,7 +24,7 @@ get_dependencies <- function(pkg,extra_deps) { forced <- forced_deps_as_debian(pkg$name) if (length(forced)) { notice('forced build dependencies:',paste(forced$build, collapse=', ')) - notice('forced binary dependencies:',paste(forced$build, collapse=', ')) + notice('forced binary dependencies:',paste(forced$bin, collapse=', ')) depends$bin = c(forced$bin,depends$bin) depends$build = c(forced$build,depends$build) }