1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-28 07:50:48 -08:00

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.
This commit is contained in:
Eli Zaretskii 2019-01-16 17:26:15 +02:00
parent 8832de4f93
commit e96a54eb3b

View file

@ -564,7 +564,7 @@ ifeq ($(DUMPING),unexec)
endif
cp -f $@ bootstrap-emacs$(EXEEXT)
else
cp -f temacs$(EXEEXT) emacs$(EXEEXT)
rm -f $@ && cp -f temacs$(EXEEXT) $@
endif
ifeq ($(DUMPING),pdumper)