]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix 'incoherent dumped eln file' error when DUMP-METHOD=pbootstrap
authorAndrea Corallo <akrl@sdf.org>
Fri, 2 Oct 2020 11:49:20 +0000 (13:49 +0200)
committerAndrea Corallo <akrl@sdf.org>
Fri, 2 Oct 2020 11:59:51 +0000 (13:59 +0200)
* src/Makefile.in ($(bootstrap_pdmp)): Add missing --bin-dest
--eln-dest flags.

src/Makefile.in

index 31a5a7e77090f834101af400b2b4ab106ec9b21f..001f0c40722055ea020c38223c0eb4501a28b9f1 100644 (file)
@@ -820,7 +820,8 @@ endif
 ifeq ($(DUMPING),pdumper)
 $(bootstrap_pdmp): bootstrap-emacs$(EXEEXT)
        rm -f $@
-       $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap
+       $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap \
+               --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR)
        @: Compile some files earlier to speed up further compilation.
        $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)"
 endif