# HG changeset patch # User Gerd Moellmann # Date 940868936 0 # Node ID 00e23959ec43412287ba2034819f0c5028ce4e13 # Parent 3264a26ae355ea1f840eea40bcf4de8b364321ca (compile-files): Fixed the "tr" strings. (EMACS): Set to ../src/emacs. diff -r 3264a26ae355 -r 00e23959ec43 lisp/Makefile --- 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