2003-08-09 01:12:03

by Robert Love

[permalink] [raw]
Subject: [patch] remove initramfs temp files

Hi, Kai.

'make distclean' and 'make mrproper' both fail to remove the file
initramfs_data.S.tmp from the root of the kernel build tree.

Attached patch adds it to the MRPROPER_FILES list.

Patch is against 2.6.0-test2.

Robert Love


Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)


diff -urN linux-2.6.0-test2/Makefile linux/Makefile
--- linux-2.6.0-test2/Makefile 2003-07-27 10:04:49.000000000 -0700
+++ linux/Makefile 2003-08-08 18:01:40.721934933 -0700
@@ -676,7 +676,7 @@
include/asm \
.hdepend include/linux/modversions.h \
tags TAGS cscope kernel.spec \
- .tmp*
+ initramfs_data.S.tmp .tmp*

# Directories removed with 'make mrproper'
MRPROPER_DIRS += \



2003-08-09 05:57:55

by Sam Ravnborg

[permalink] [raw]
Subject: Re: [patch] remove initramfs temp files

On Fri, Aug 08, 2003 at 06:08:12PM -0700, Robert Love wrote:
> Hi, Kai.
>
> 'make distclean' and 'make mrproper' both fail to remove the file
> initramfs_data.S.tmp from the root of the kernel build tree.

Bitkeeper generated this file during a merge - dunno wht.
So the file was part of the kernel src - but Linus already noticed and
deleted it from the kernel src.
It is gone in test3.

Sam

2003-08-10 01:43:16

by Robert Love

[permalink] [raw]
Subject: Re: [patch] remove initramfs temp files

On Fri, 2003-08-08 at 22:57, Sam Ravnborg wrote:

> Bitkeeper generated this file during a merge - dunno wht.
> So the file was part of the kernel src - but Linus already noticed and
> deleted it from the kernel src.
> It is gone in test3.

Oh. For some reason I thought it was generated during my build.

Thanks.

Robert Love