# HG changeset patch # User Gerd Moellmann # Date 989578436 0 # Node ID ebec0594dece315d217fbfbdc7e03a97284c8852 # Parent 0809fd6e4d2d83bbdac0493511a21b1b2119d27b (compile-files): Redirect output of chmod to /dev/null. diff -r 0809fd6e4d2d -r ebec0594dece lisp/Makefile.in --- 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|'`; \