diff scripts/pkg/private/configure_make.m @ 28905:89a425f2c202

maint: Use Octave convention that error() messages don't end with a period. * __magick_read__.cc, graphics.cc, input.cc, sysdep.cc, cdef-object.cc, profiler.cc, __uiobject_split_args__.m, imformats.m, ind2rgb.m, strread.m, edit.m, nargoutchk.m, display_info_file.m, substruct.m, configure_make.m, camlookat.m, camorbit.m, copyobj.m, graphics_toolkit.m, __print_parse_opts__.m, ichol.m, ilu.m, gallery.m, strtok.m: Delete period from end of messages used in calls to error().
author Rik <rik@octave.org>
date Tue, 13 Oct 2020 13:47:55 -0700
parents b8384ed4d500
children c01950bc7290
line wrap: on
line diff
--- a/scripts/pkg/private/configure_make.m	Tue Oct 13 13:24:54 2020 -0700
+++ b/scripts/pkg/private/configure_make.m	Tue Oct 13 13:47:55 2020 -0700
@@ -90,7 +90,7 @@
       if (status != 0)
         sts = rmdir (desc.dir, "s");
         disp (output);
-        error ("pkg: error running the configure script for %s.", desc.name);
+        error ("pkg: error running the configure script for %s", desc.name);
       endif
     endif
 
@@ -107,7 +107,7 @@
       if (status != 0)
         sts = rmdir (desc.dir, "s");
         disp (output);
-        error ("pkg: error running 'make' for the %s package.", desc.name);
+        error ("pkg: error running 'make' for the %s package", desc.name);
       endif
     endif
   endif
@@ -136,7 +136,7 @@
     if (have_sh)
       cmd = ['sh.exe -c "' cmd '"'];
     else
-      error ("pkg: unable to find the command shell.");
+      error ("pkg: unable to find the command shell");
     endif
   endif
   ## if verbose, we want to display the output in real time.  To do this, we