From e3384ae764a5628a0407c5d3ab70330209df5843 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 25 Oct 1999 16:29:44 +0000 Subject: [PATCH] (compile-files): Fixed the "tr" strings. (EMACS): Set to ../src/emacs. --- lisp/ChangeLog | 5 +++++ lisp/Makefile | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) 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 -- 2.39.5