Mercurial > emacs
changeset 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 11 May 2001 10:53:56 +0000 |
parents | 0809fd6e4d2d |
children | 13efa6105da9 |
files | lisp/Makefile.in |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/Makefile.in Fri May 11 09:10:48 2001 +0000 +++ b/lisp/Makefile.in Fri May 11 10:53:56 2001 +0000 @@ -196,7 +196,7 @@ # load's in the files being compiled find the right files. compile-files: subdirs.el doit - find $(lisp) -name "*.elc" -print | xargs chmod +w; \ + find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \ wd=$(lisp); $(setwins); \ elpat=`echo $$wins | tr ' ' '\012\012' | \ sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \