On Mon, 17 Jun 2002, Martin Dalecki wrote:
> The following diff clutter appears in every diff after make menuconfig
>
> diff -urN linux-2.5.21/scripts/lxdialog/.checklist.o.cmd
> linux/scripts/lxdialog/.checklist.o.cmd
> [..]
Ah, okay. We don't remove .*.cmd in scripts/dialog on make clean, since
we want lxdialog to survive the make clean. Unfortunately, that means
we didn't remove those at all.
--Kai
===== Makefile 1.265 vs edited =====
--- 1.265/Makefile Mon Jun 17 10:26:40 2002
+++ edited/Makefile Mon Jun 17 10:49:48 2002
@@ -622,7 +622,8 @@
mrproper: clean archmrproper
@echo 'Making mrproper'
- @find . \( -size 0 -o -name .depend \) -type f -print | xargs rm -f
+ @find . \( -size 0 -o -name .depend -o -name .\*.cmd \) \
+ -type f -print | xargs rm -f
@rm -f $(MRPROPER_FILES)
@rm -rf $(MRPROPER_DIRS)
@$(MAKE) -C Documentation/DocBook mrproper
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Sun Jun 23 2002 - 22:00:13 EST