aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorEli Zaretskii2019-01-16 17:26:15 +0200
committerEli Zaretskii2019-01-16 17:26:15 +0200
commite96a54eb3bdfd75bafbe795ec6dd7b94ff65b8ac (patch)
tree5c130f063b7dfea8cbaa42c29fed9459aaa24546 /src/Makefile.in
parent8832de4f937aafdc58f5fa5a07b3aca549314901 (diff)
downloademacs-e96a54eb3bdfd75bafbe795ec6dd7b94ff65b8ac.tar.gz
emacs-e96a54eb3bdfd75bafbe795ec6dd7b94ff65b8ac.zip
Fix minor glitch with producing 'emacs' executable
* src/Makefile.in (LC_ALL) [!DUMPING]: Don't overwrite previous emacs-X.Y.Z executables with new ones.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 980bd6d10e8..1d6faf9c53b 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -564,7 +564,7 @@ ifeq ($(DUMPING),unexec)
564 endif 564 endif
565 cp -f $@ bootstrap-emacs$(EXEEXT) 565 cp -f $@ bootstrap-emacs$(EXEEXT)
566else 566else
567 cp -f temacs$(EXEEXT) emacs$(EXEEXT) 567 rm -f $@ && cp -f temacs$(EXEEXT) $@
568endif 568endif
569 569
570ifeq ($(DUMPING),pdumper) 570ifeq ($(DUMPING),pdumper)