diff liboctave/sparse-mk-ops.awk @ 14396:08e48e7a4c8a stable

maint: avoid $(echo ...) in shell script string (bug #35572) * mk-ops.awk, sparse-mk-ops.awk: Print lists of source files on one line. * config-ops.sh: Don't call $(echo ...) inside string.
author John W. Eaton <jwe@octave.org>
date Thu, 23 Feb 2012 15:40:44 -0500
parents 72c96de7a403
children
line wrap: on
line diff
--- a/liboctave/sparse-mk-ops.awk
+++ b/liboctave/sparse-mk-ops.awk
@@ -92,13 +92,13 @@
 
           if (list_cc_files)
             {
-              print cc_file;
+              printf (" %s", cc_file);
               next;
             }
 
           if (list_h_files)
             {
-              print h_file;
+              printf (" %s", h_file);
               next;
             }