changeset 26183:00e23959ec43

(compile-files): Fixed the "tr" strings. (EMACS): Set to ../src/emacs.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 25 Oct 1999 16:28:56 +0000
parents 3264a26ae355
children d65f5e364c5c
files lisp/Makefile
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/Makefile	Mon Oct 25 16:12:21 1999 +0000
+++ b/lisp/Makefile	Mon Oct 25 16:28:56 1999 +0000
@@ -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 @@
 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