mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
(compile-files): Redirect output of chmod to
/dev/null.
This commit is contained in:
parent
2a482fd745
commit
2ac5ecc64c
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ $(DONTCOMPILE:.el=.elc):
|
|||
# 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|'`; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue