aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2024-07-15 19:41:35 -0700
committerPaul Eggert2024-07-16 15:37:22 -0700
commita826296cff6ac1c636db83ff66199c60b69cdeb3 (patch)
treee6d1138c87582acb71b39b3c336c594180f27064 /src
parenta86c25c91f39a25a93d18c9267e024822c1bc43e (diff)
downloademacs-a826296cff6ac1c636db83ff66199c60b69cdeb3.tar.gz
emacs-a826296cff6ac1c636db83ff66199c60b69cdeb3.zip
Quote BIN_DESTDIR better
* Makefile.in (BIN_DESTDIR, install-eln, uninstall): * src/Makefile.in ($(pdmp)): Be more consistent about quoting BIN_DESTDIR and ELN_DESTDIR, avoiding double-quoting ''like this'' which does not work as expected.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 7575ecbd07a..c278924ef94 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -682,7 +682,7 @@ endif
682ifeq ($(DUMPING),pdumper) 682ifeq ($(DUMPING),pdumper)
683$(pdmp): emacs$(EXEEXT) $(lispsource)/loaddefs.el $(lispsource)/loaddefs.elc 683$(pdmp): emacs$(EXEEXT) $(lispsource)/loaddefs.el $(lispsource)/loaddefs.elc
684 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \ 684 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
685 --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR) 685 --bin-dest '$(BIN_DESTDIR)' --eln-dest '$(ELN_DESTDIR)'
686 cp -f $@ $(bootstrap_pdmp) 686 cp -f $@ $(bootstrap_pdmp)
687endif 687endif
688 688
@@ -975,7 +975,7 @@ NATIVE_COMPILATION_AOT = @NATIVE_COMPILATION_AOT@
975 find $@ -name '*.eln' | rebase -v -O -T -; \ 975 find $@ -name '*.eln' | rebase -v -O -T -; \
976 fi; \ 976 fi; \
977 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \ 977 LC_ALL=C $(RUN_TEMACS) -batch $(BUILD_DETAILS) -l loadup --temacs=pdump \
978 --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR) \ 978 --bin-dest '$(BIN_DESTDIR)' --eln-dest '$(ELN_DESTDIR)' \
979 && cp -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT) \ 979 && cp -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT) \
980 && cp -f $(pdmp) $(bootstrap_pdmp); \ 980 && cp -f $(pdmp) $(bootstrap_pdmp); \
981 if test $(NATIVE_COMPILATION_AOT) = yes; then \ 981 if test $(NATIVE_COMPILATION_AOT) = yes; then \
@@ -1014,7 +1014,7 @@ ifeq ($(DUMPING),pdumper)
1014$(bootstrap_pdmp): bootstrap-emacs$(EXEEXT) 1014$(bootstrap_pdmp): bootstrap-emacs$(EXEEXT)
1015 rm -f $@ 1015 rm -f $@
1016 $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap \ 1016 $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap \
1017 --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR) 1017 --bin-dest '$(BIN_DESTDIR)' --eln-dest '$(ELN_DESTDIR)'
1018 @: Compile some files earlier to speed up further compilation. 1018 @: Compile some files earlier to speed up further compilation.
1019 @: First, byte compile these files, .... 1019 @: First, byte compile these files, ....
1020 ANCIENT=yes $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)" 1020 ANCIENT=yes $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)"