diff options
| author | Eli Zaretskii | 2019-01-16 17:26:15 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-01-16 17:26:15 +0200 |
| commit | e96a54eb3bdfd75bafbe795ec6dd7b94ff65b8ac (patch) | |
| tree | 5c130f063b7dfea8cbaa42c29fed9459aaa24546 | |
| parent | 8832de4f937aafdc58f5fa5a07b3aca549314901 (diff) | |
| download | emacs-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.
| -rw-r--r-- | src/Makefile.in | 2 |
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) |
| 566 | else | 566 | else |
| 567 | cp -f temacs$(EXEEXT) emacs$(EXEEXT) | 567 | rm -f $@ && cp -f temacs$(EXEEXT) $@ |
| 568 | endif | 568 | endif |
| 569 | 569 | ||
| 570 | ifeq ($(DUMPING),pdumper) | 570 | ifeq ($(DUMPING),pdumper) |