Mercurial > hg > octave-lyh
changeset 17016:a3f6790df115
Fix typos from cstrcat to matrix concatenation changeset (333243133364).
* scripts/pkg/private/configure_make.m: Add missing commas.
* scripts/pkg/private/install.m: Remove stray closing parenthesis.
author | Rik <rik@octave.org> |
---|---|
date | Thu, 18 Jul 2013 23:07:34 -0700 |
parents | 761d2be77e78 |
children | 8003a4f013be |
files | scripts/pkg/private/configure_make.m scripts/pkg/private/install.m |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/pkg/private/configure_make.m +++ b/scripts/pkg/private/configure_make.m @@ -47,10 +47,10 @@ flags = [flags ' CXX="' mkoctfile("-p", "CXX") '"']; endif if (isempty (getenv ("AR"))) - flags = [flags ' AR="' mkoctfile("-p" "AR") '"']; + flags = [flags ' AR="' mkoctfile("-p", "AR") '"']; endif if (isempty (getenv ("RANLIB"))) - flags = [flags ' RANLIB="' mkoctfile("-p" "RANLIB") '"']; + flags = [flags ' RANLIB="' mkoctfile("-p", "RANLIB") '"']; endif cmd = ["cd '" src "'; " ... scenv "./configure --prefix=\"" desc.dir "\"" flags];
--- a/scripts/pkg/private/install.m +++ b/scripts/pkg/private/install.m @@ -172,7 +172,7 @@ for i = 1:length (bad_deps) dep = bad_deps{i}; error_text = [error_text " " desc.name " needs " ... - dep.package " " dep.operator " " dep.version "\n"]); + dep.package " " dep.operator " " dep.version "\n"]; endfor endif endfor