comparison lisp/Makefile.in @ 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 9a3f00ed6c43
children 8b46b3446482
comparison
equal deleted inserted replaced
37677:0809fd6e4d2d 37678:ebec0594dece
194 # We also set the load-path of the Emacs used for compilation to the 194 # We also set the load-path of the Emacs used for compilation to the
195 # current directory and its subdirectories, to make sure require's and 195 # current directory and its subdirectories, to make sure require's and
196 # load's in the files being compiled find the right files. 196 # load's in the files being compiled find the right files.
197 197
198 compile-files: subdirs.el doit 198 compile-files: subdirs.el doit
199 find $(lisp) -name "*.elc" -print | xargs chmod +w; \ 199 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
200 wd=$(lisp); $(setwins); \ 200 wd=$(lisp); $(setwins); \
201 elpat=`echo $$wins | tr ' ' '\012\012' | \ 201 elpat=`echo $$wins | tr ' ' '\012\012' | \
202 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ 202 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
203 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \ 203 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
204 tr ' ' '\012\012' | sort | uniq -u`; \ 204 tr ' ' '\012\012' | sort | uniq -u`; \