From: Gerd Moellmann Date: Mon, 25 Oct 1999 16:29:44 +0000 (+0000) Subject: (compile-files): Fixed the "tr" strings. X-Git-Tag: emacs-pretest-21.0.90~6306 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e3384ae764a5628a0407c5d3ab70330209df5843;p=emacs.git (compile-files): Fixed the "tr" strings. (EMACS): Set to ../src/emacs. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d7e6d1c9bc4..cb2b9ed4921 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +1999-10-25 Sam Steingold + + * Makefile (compile-files): Fixed the "tr" strings. + (EMACS): Set to ../src/emacs. + 1999-10-25 Gerd Moellmann * info.el (Info-build-node-completions): Add '("*") to the diff --git a/lisp/Makefile b/lisp/Makefile index 9db056ca931..485b4598ba2 100644 --- a/lisp/Makefile +++ b/lisp/Makefile @@ -5,7 +5,7 @@ # You can specify a different executable on the make command line, # e.g. "make EMACS=../src/emacs ...". -EMACS = emacs +EMACS = ../src/emacs # Command line flags for Emacs. This must include --multibyte, # otherwise some files will not compile. @@ -112,9 +112,9 @@ $(DONTCOMPILE:.el=.elc): compile-files: subdirs.el doit find . -name "*.elc" -print | xargs chmod +w; \ wd=.; $(setwins); \ - elpat=`echo $$wins | tr '[ ]' '[\012\012]' | \ + elpat=`echo $$wins | tr ' ' '\012\012' | \ sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ - els=`echo $$elpat $(DONTCOMPILE) | tr '[ ]' '[\012\012]' | sort | uniq -u`; \ + els=`echo $$elpat $(DONTCOMPILE) | tr ' ' '\012\012' | sort | uniq -u`; \ echo $$els; \ EMACSLOADPATH=`pwd` $(emacs) -f batch-byte-compile $$els