diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2017-03-07 13:25:45 +0000 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2017-03-07 13:49:48 +0000 |
commit | 542a763281347b026b6714483299a108a8c3b9c2 (patch) | |
tree | 409e48faaec350983a446e450c9b434e14c5958e /lisp/Makefile.in | |
parent | e37bfd41546f515cfef1f8d2c64df2dccac18a86 (diff) | |
download | emacs-542a763281347b026b6714483299a108a8c3b9c2.tar.gz |
Revert "Replace ldefs-boot with a much smaller file"
This reverts commit c27b645956a11fab1dd8fa189254d525390958f5.
This commit has been reverted because the new mechanism was too
sensitive to changes in the lisp source, generation of new ldefs-boot
files was platform specific and resulted in warnings about undefined
variables.
See also 11436e2890d.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 91b035476fe..cbe7718981e 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -230,7 +230,7 @@ FORCE: tagsfiles = $(shell find ${srcdir} -name '*.el') tagsfiles := $(filter-out ${srcdir}/%loaddefs.el,${tagsfiles}) -tagsfiles := $(filter-out ${srcdir}/ldefs-boot%.el,${tagsfiles}) +tagsfiles := $(filter-out ${srcdir}/ldefs-boot.el,${tagsfiles}) tagsfiles := $(filter-out ${srcdir}/eshell/esh-groups.el,${tagsfiles}) ETAGS = ../lib-src/etags${EXEEXT} @@ -283,7 +283,7 @@ $(THEFILE)c: .PHONY: compile-first compile-main compile compile-always -compile-first: loaddefs.el $(COMPILE_FIRST) +compile-first: $(COMPILE_FIRST) # In 'compile-main' we could directly do # ... | xargs $(MAKE) @@ -450,7 +450,7 @@ check-declare: check-defun-dups: sed -n -e '/^(defun /s/\(.\)(.*/\1/p' \ $$(find . -name '*.el' -print | \ - grep -Ev '(loaddefs|ldefs-boot*)\.el') | sort | uniq -d + grep -Ev '(loaddefs|ldefs-boot)\.el') | sort | uniq -d # Dependencies |