diff scripts/pkg/private/configure_make.m @ 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 333243133364
children
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];