changeset 10869:f0a897829e81

config-module.awk: Add newlines to divide blocks in generated modules.mk
author Rik <octave@nomad.inbox5.com>
date Sun, 08 Aug 2010 17:12:54 -0700
parents 29ccddba2e5e
children 307c8396bc83
files src/ChangeLog src/DLD-FUNCTIONS/config-module.awk
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-08  Rik <octave@nomad.inbox5.com>
+
+	* DLD-FUNCTIONS/config-module.awk: Add newlines to divide blocks
+	in generated modules.mk and improve readability.
+
 2010-08-08  Rik <octave@nomad.inbox5.com>
 
 	* Makefile.am: Create .DOCSTRINGS quietly and avoid screen clutter
--- a/src/DLD-FUNCTIONS/config-module.awk
+++ b/src/DLD-FUNCTIONS/config-module.awk
@@ -19,6 +19,7 @@
       sep = "\n";
     printf ("  DLD-FUNCTIONS/%s.la%s", basename, sep);
   }
+  print ""
   print "octlib_LTLIBRARIES += $(DLD_FUNCTIONS_LIBS)";
   print ""
   print "if AMCOND_ENABLE_DYNAMIC_LINKING";
@@ -33,6 +34,7 @@
     print "\t  $(LN_S) .libs/`$(SED) -n -e \"s/dlname='\\([^']*\\)'/\\1/p\" < $$la` $$of";
   }
   print "endif";
+  print ""
 
   for (i = 1; i <= nfiles; i++) {
     basename = files[i];