diff options
| author | Gerd Moellmann | 2001-05-11 10:53:56 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-05-11 10:53:56 +0000 |
| commit | 2ac5ecc64cc69d597ff66018b52ba8977e22cab4 (patch) | |
| tree | 64815176f719cab0d178d830693d23ca8fa52502 | |
| parent | 2a482fd7450d65cdeaa0b46f3dc120e9c16273f0 (diff) | |
| download | emacs-2ac5ecc64cc69d597ff66018b52ba8977e22cab4.tar.gz emacs-2ac5ecc64cc69d597ff66018b52ba8977e22cab4.zip | |
(compile-files): Redirect output of chmod to
/dev/null.
| -rw-r--r-- | lisp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 933673d94be..703d5c7a28b 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -196,7 +196,7 @@ $(DONTCOMPILE:.el=.elc): | |||
| 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|'`; \ |