From 2ee01ad0b7cddd030b22a461c236f47261c44360 Mon Sep 17 00:00:00 2001 From: rozlette Date: Thu, 27 Feb 2020 16:58:39 -0600 Subject: [PATCH] Avoid changing the last modified date on the built elf files during later parts of the build process --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 54424bc61e..43344a9b01 100644 --- a/Makefile +++ b/Makefile @@ -130,7 +130,7 @@ build/decomp/code: build/code.bin cp $< $@ build/decomp/ovl_%: build/code.elf - $(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $< + $(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $< /dev/null disasm: @@ -142,7 +142,7 @@ disasm: # Recipes build/%.bin: build/code.elf - $(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $< + $(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $< /dev/null build/baserom/%: baserom/% cp $< $@