Mercurial > hg > octave-nkf
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 +++ b/scripts/ChangeLog @@ -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 +++ b/scripts/Makefile.am @@ -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 +++ b/src/ChangeLog @@ -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 +++ b/src/Makefile.am @@ -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 \