On Nov 24, 2015, at 11:07 AM, Jan Beulich <jbeulich@xxxxxxxx> wrote:
On 24.11.15 at 17:56, <jonathan.creekmore@xxxxxxxxx> wrote:
--- a/xen/Makefile +++ b/xen/Makefile @@ -88,7 +88,7 @@ _clean: delete-unfresh-files $(MAKE) -f $(BASEDIR)/Rules.mk -C xsm clean $(MAKE) -f $(BASEDIR)/Rules.mk -C crypto clean $(MAKE) -f $(BASEDIR)/Rules.mk -C arch/$(TARGET_ARCH) clean - rm -f include/asm *.o $(TARGET) $(TARGET).gz $(TARGET).efi $(TARGET)-syms *~ core + rm -f include/asm *.o $(TARGET) $(TARGET).gz $(TARGET).efi $(TARGET)-syms *~ core $(DEPS)
Is this really a problem only in xen/ ? The referenced commit clearly introduces "stray" *.d files elsewhere. Also there aren't any source files in xen/, so I'd expect $(DEPS) to be empty. Please clarify.
So, the files in xen/ were the dependencies files for xen.efi and xen-syms that were getting left behind. $(DEPS) appears to alwayshave â.*.dâ in it, based on me putting an echo into the clean rule to print it out. However, looking at this, I am also seeing â.dâ files leftbehind in xen/common/compat that I did not notice before.
Actually, looking closer at it, xen/common/compat does not appear to be cleaning at all, so I think that is a separate, unrelated issue.
|