(compile-files): Fixed the "tr" strings.

(EMACS): Set to ../src/emacs.
This commit is contained in:
Gerd Moellmann 1999-10-25 16:29:44 +00:00
parent 711331aa75
commit e3384ae764
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
1999-10-25 Sam Steingold <sds@ksp.com>
* Makefile (compile-files): Fixed the "tr" strings.
(EMACS): Set to ../src/emacs.
1999-10-25 Gerd Moellmann <gerd@gnu.org>
* info.el (Info-build-node-completions): Add '("*") to the

View file

@ -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