diff options
| author | Glenn Morris | 2017-04-25 15:05:52 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-04-25 15:05:52 -0400 |
| commit | e4ddf394d0ca42b3958848800c98fed2215291f7 (patch) | |
| tree | f690b569adfc15be238810632c0946f0a8718f94 | |
| parent | 5b0fdefb4ca54b0d3dac3047ac1e4b380beb6ba7 (diff) | |
| download | emacs-e4ddf394d0ca42b3958848800c98fed2215291f7.tar.gz emacs-e4ddf394d0ca42b3958848800c98fed2215291f7.zip | |
Avoid parallel race condition
* lisp/Makefile.in ($(lisp)/loaddefs.el): Remove gen-lisp for now.
| -rw-r--r-- | lisp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index c1b063246e8..e13734a5035 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -196,7 +196,7 @@ $(lisp)/finder-inf.el: | |||
| 196 | # slow; starting from an almost-correct content will enable the "only | 196 | # slow; starting from an almost-correct content will enable the "only |
| 197 | # update where necessary" feature of batch-update-autoloads. | 197 | # update where necessary" feature of batch-update-autoloads. |
| 198 | autoloads .PHONY: $(lisp)/loaddefs.el | 198 | autoloads .PHONY: $(lisp)/loaddefs.el |
| 199 | $(lisp)/loaddefs.el: gen-lisp $(LOADDEFS) | 199 | $(lisp)/loaddefs.el: $(LOADDEFS) |
| 200 | @echo Directories for loaddefs: ${SUBDIRS_ALMOST} | 200 | @echo Directories for loaddefs: ${SUBDIRS_ALMOST} |
| 201 | @if test -f $@ ; then cp $@ $(lisp)/loaddefs.tmp ; fi | 201 | @if test -f $@ ; then cp $@ $(lisp)/loaddefs.tmp ; fi |
| 202 | $(AM_V_GEN)$(emacs) -l autoload \ | 202 | $(AM_V_GEN)$(emacs) -l autoload \ |