comparison scripts/pkg/private/configure_make.m @ 27216:823b4bcf79fc

unless necessary for formatting or code, use ' instead of ` Files affected: doc/interpreter/TODO, etc/HACKING.md, examples/code/oregonator.cc, examples/code/oregonator.m, libgui/graphics/ObjectFactory.cc, libinterp/corefcn/defun-dld.h, libinterp/corefcn/defun.h, libinterp/corefcn/graphics.cc, libinterp/corefcn/ls-hdf5.cc, libinterp/corefcn/oct-stream.cc, libinterp/octave-value/cdef-class.cc, libinterp/octave-value/cdef-manager.cc, libinterp/octave-value/cdef-method.cc, libinterp/octave-value/cdef-object.cc, libinterp/octave-value/cdef-package.cc, libinterp/octave-value/cdef-property.cc, libinterp/octave-value/cdef-utils.cc, libinterp/octave-value/ov-classdef.cc, libinterp/octave-value/ov-java.cc, libinterp/octave-value/ov.h, libinterp/parse-tree/oct-parse.yy, liboctave/array/Array.h, liboctave/numeric/bsxfun.h, liboctave/util/oct-rl-hist.c, scripts/help/__unimplemented__.m, scripts/image/imformats.m, scripts/image/imwrite.m, scripts/image/private/__imread__.m, scripts/image/private/__imwrite__.m, scripts/java/org/octave/Matrix.java, scripts/linear-algebra/condeig.m, scripts/miscellaneous/inputParser.m, scripts/miscellaneous/publish.m, scripts/pkg/private/configure_make.m, scripts/special-matrix/gallery.m, scripts/web/weboptions.m, test/classdef/classdef.tst.
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jun 2019 15:47:03 -0400
parents 00f796120a6d
children b442ec6dda5c
comparison
equal deleted inserted replaced
27215:274766cae722 27216:823b4bcf79fc
94 [status, output] = shell (sprintf ("%s make --jobs %i --directory '%s'", 94 [status, output] = shell (sprintf ("%s make --jobs %i --directory '%s'",
95 scenv, jobs, src), verbose); 95 scenv, jobs, src), verbose);
96 if (status != 0) 96 if (status != 0)
97 rmdir (desc.dir, "s"); 97 rmdir (desc.dir, "s");
98 disp (output); 98 disp (output);
99 error ("pkg: error running `make' for the %s package.", desc.name); 99 error ("pkg: error running 'make' for the %s package.", desc.name);
100 endif 100 endif
101 endif 101 endif
102 endif 102 endif
103 103
104 endfunction 104 endfunction
127 else 127 else
128 error ("pkg: unable to find the command shell."); 128 error ("pkg: unable to find the command shell.");
129 endif 129 endif
130 endif 130 endif
131 ## if verbose, we want to display the output in real time. To do this, we 131 ## if verbose, we want to display the output in real time. To do this, we
132 ## must call system with 1 output argument. But then the variable `output' 132 ## must call system with 1 output argument. But then the variable 'output'
133 ## won't exist. So we initialize it empty. If an error does occur, and we 133 ## won't exist. So we initialize it empty. If an error does occur, and we
134 ## are verbose we will return an empty string but it's all fine since 134 ## are verbose we will return an empty string but it's all fine since
135 ## the error message has already been displayed. 135 ## the error message has already been displayed.
136 output = ""; 136 output = "";
137 if (verbose) 137 if (verbose)