diff options
| author | Eli Zaretskii | 2007-07-20 19:43:01 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-07-20 19:43:01 +0000 |
| commit | b395d6e1f58998d74af97f78b09518f16ed40c20 (patch) | |
| tree | a9bd50717241ba7d6c084d0322a4521c020fc77b /src | |
| parent | f37b8e41a1e0b9bbd5a8f553ec8b981a9bb2a48c (diff) | |
| download | emacs-b395d6e1f58998d74af97f78b09518f16ed40c20.tar.gz emacs-b395d6e1f58998d74af97f78b09518f16ed40c20.zip | |
(clean): Don't delete *~.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/makefile.w32-in | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a9303a47d6e..008234b559a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-07-20 Eli Zaretskii <eliz@gnu.org> | 1 | 2007-07-20 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * makefile.w32-in (clean): Don't delete *~. | ||
| 4 | |||
| 3 | * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32): | 5 | * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32): |
| 4 | Define if not defined. | 6 | Define if not defined. |
| 5 | 7 | ||
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index ccb0dcf9f5f..c28e27bdfcb 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -247,8 +247,10 @@ install: $(ALL) | |||
| 247 | # | 247 | # |
| 248 | # Maintenance | 248 | # Maintenance |
| 249 | # | 249 | # |
| 250 | # We used to delete *~, s/*~, m/*~ here, but that might inadvertently | ||
| 251 | # remove precious files if it happens to match their short 8+3 aliases. | ||
| 250 | clean: | 252 | clean: |
| 251 | - $(DEL) *~ "s/*~" "m/*~" | 253 | - $(DEL) "s/*.h~" "m/*.h~" |
| 252 | - $(DEL) $(COMPILER_TEMP_FILES) | 254 | - $(DEL) $(COMPILER_TEMP_FILES) |
| 253 | - $(DEL_TREE) $(OBJDIR) | 255 | - $(DEL_TREE) $(OBJDIR) |
| 254 | - $(DEL) stamp_BLD | 256 | - $(DEL) stamp_BLD |