Mercurial > hg > octave-nkf
changeset 12737:e037601fa4d7 stable
maint: Change .gdbinit Makefile.am rule to be silent
* Makefile.am: Use @ to run .gdbinit silently
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 12 Jun 2011 07:01:42 -0700 |
parents | dd9b46dff1ac |
children | 0cb4e502fe5e |
files | Makefile.am |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.am +++ b/Makefile.am @@ -110,9 +110,10 @@ chmod a+rx "$@" .gdbinit: etc/gdbinit - if [ -f .gdbinit ]; then \ + @if [ -f .gdbinit ]; then \ echo "refusing to overwrite .gdbinit with newer version from $<" 1>&2; \ else \ + echo "Installing .gdbinit from version at $<" ; \ cp $< $@; \ fi