diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-09-25 16:46:02 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-09-25 16:46:02 -0700 |
commit | ed67201fcc004ccb0eb20e5489d71ed69cfb7428 (patch) | |
tree | 55cea829c53c57d14577f65f35302a3bb6d97837 /modules/Makefile | |
parent | 5c12206bf5c223df3f555c6c2b4aed06cfe357a1 (diff) | |
download | syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.tar.gz syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.tar.xz syslinux-elf-ed67201fcc004ccb0eb20e5489d71ed69cfb7428.zip |
Fix "make clean" confusionsyslinux-3.72
"make clean" must NOT remove stuff that "make installer" should not
rebuild. This is a somewhat unfortunate choice of naming, but that's
the way it is.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'modules/Makefile')
-rw-r--r-- | modules/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Makefile b/modules/Makefile index 5caf5e6e..1ffe9ef3 100644 --- a/modules/Makefile +++ b/modules/Makefile @@ -58,6 +58,6 @@ tidy dist: rm -f *.o *.a *.lst *.elf clean: tidy - rm -f $(BINS) spotless: clean + rm -f $(BINS) |