changeset 10867:5502105b4f17

Run do_subst macro quietly to avoid screen clutter during build.
author Rik <octave@nomad.inbox5.com>
date Sun, 08 Aug 2010 14:21:30 -0700
parents 045558999570
children 29ccddba2e5e
files scripts/ChangeLog scripts/Makefile.am src/ChangeLog src/Makefile.am
diffstat 4 files changed, 13 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Sun Aug 08 14:49:49 2010 -0400
+++ b/scripts/ChangeLog	Sun Aug 08 14:21:30 2010 -0700
@@ -1,3 +1,8 @@
+2010-08-08  Rik <octave@nomad.inbox5.com>
+
+	* Makefile.am: Run do_subst macro quietly without cluttering screen 
+	during build.
+
 2010-08-08  Ben Abbott <bpabbott@mac.com>
 
 	* plot/print.m: Include 'colormap' when converting RGB to mono.
--- a/scripts/Makefile.am	Sun Aug 08 14:49:49 2010 -0400
+++ b/scripts/Makefile.am	Sun Aug 08 14:21:30 2010 -0700
@@ -328,7 +328,7 @@
 	touch $@
 
 $(GEN_FCN_FILES) : %.m : %.in Makefile
-	$(do_subst_config_vals)
+	@$(do_subst_config_vals)
 
 check-m-sources:
 	@echo -n "checking whether files in source tree are listed in module.mk files..."; \
--- a/src/ChangeLog	Sun Aug 08 14:49:49 2010 -0400
+++ b/src/ChangeLog	Sun Aug 08 14:21:30 2010 -0700
@@ -1,3 +1,8 @@
+2010-08-08  Rik <octave@nomad.inbox5.com>
+
+	* Makefile.am: Run do_subst macro quietly without cluttering screen 
+	during build.
+
 2010-08-08  Shai Ayal  <shaiay@users.sourceforge.net>
 
 	* DLD-FUNCTIONS/fltk_backend.cc
--- a/src/Makefile.am	Sun Aug 08 14:49:49 2010 -0400
+++ b/src/Makefile.am	Sun Aug 08 14:21:30 2010 -0700
@@ -743,10 +743,10 @@
 ## regenerate the Makefiles from Makefile.am and trigger the rules below.
 
 defaults.h: defaults.h.in Makefile
-	$(do_subst_default_vals)
+	@$(do_subst_default_vals)
 
 oct-conf.h: oct-conf.h.in Makefile
-	$(do_subst_config_vals)
+	@$(do_subst_config_vals)
 
 oct-errno.cc: oct-errno.cc.in Makefile
 	if test -n "$(PERL)"; then \