/[packages]/cauldron/kernel-tmb/pristine/SOURCES/disable-mrproper-prepare-scripts-configs-in-devel-rpms.patch
ViewVC logotype

Diff of /cauldron/kernel-tmb/pristine/SOURCES/disable-mrproper-prepare-scripts-configs-in-devel-rpms.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 78708 by tmb, Tue Mar 29 10:06:54 2011 UTC revision 134369 by tmb, Thu Aug 18 22:09:27 2011 UTC
# Line 1  Line 1 
1    
2   Makefile                 |   13 +++++--------   Makefile                 |   19 ++++++++++---------
3   scripts/kconfig/Makefile |   18 ------------------   scripts/kconfig/Makefile |   18 ------------------
4   2 files changed, 5 insertions(+), 26 deletions(-)   2 files changed, 10 insertions(+), 27 deletions(-)
5    
6  diff -urp linux-2.6.38-mga0.2/Makefile linux-2.6.38-mga0.2-mrproper/Makefile  diff -Nurp linux-3.0/Makefile linux-3.0-mrproper/Makefile
7  --- linux-2.6.38-mga0.2/Makefile        2011-03-20 05:16:56.702931902 +0200  --- linux-3.0/Makefile  2011-07-15 02:37:36.866554406 +0300
8  +++ linux-2.6.38-mga0.2-mrproper/Makefile       2011-03-20 05:18:01.828314994 +0200  +++ linux-3.0-mrproper/Makefile 2011-07-15 14:14:32.143899236 +0300
9  @@ -482,8 +482,7 @@ ifeq ($(KBUILD_EXTMOD),)  @@ -502,8 +502,7 @@ ifeq ($(KBUILD_EXTMOD),)
10   # Carefully list dependencies so we do not try to build scripts twice   # Carefully list dependencies so we do not try to build scripts twice
11   # in parallel   # in parallel
12   PHONY += scripts   PHONY += scripts
# Line 16  diff -urp linux-2.6.38-mga0.2/Makefile l Line 16  diff -urp linux-2.6.38-mga0.2/Makefile l
16    
17   # Objects we will link into vmlinux / subdirs we need to visit   # Objects we will link into vmlinux / subdirs we need to visit
18   init-y         := init/   init-y         := init/
19  @@ -956,7 +955,7 @@ prepare0: archprepare FORCE  @@ -986,7 +985,7 @@ prepare0: archprepare FORCE
20          $(Q)$(MAKE) $(build)=. missing-syscalls          $(Q)$(MAKE) $(build)=. missing-syscalls
21    
22   # All the preparing..   # All the preparing..
# Line 25  diff -urp linux-2.6.38-mga0.2/Makefile l Line 25  diff -urp linux-2.6.38-mga0.2/Makefile l
25    
26   # Generate some files   # Generate some files
27   # ---------------------------------------------------------------------------   # ---------------------------------------------------------------------------
28  @@ -1132,10 +1131,8 @@ CLEAN_FILES +=   vmlinux System.map \  @@ -1158,11 +1157,13 @@ CLEAN_FILES +=  vmlinux System.map \
29                   .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map                   .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
30    
31   # Directories & files removed with 'make mrproper'   # Directories & files removed with 'make mrproper'
32  -MRPROPER_DIRS  += include/config usr/include include/generated  -MRPROPER_DIRS  += include/config usr/include include/generated          \
33    -                  arch/*/include/generated
34  -MRPROPER_FILES += .config .config.old .version .old_version             \  -MRPROPER_FILES += .config .config.old .version .old_version             \
35  -                  include/linux/version.h                               \  -                  include/linux/version.h                               \
36  -                 Module.symvers tags TAGS cscope*  -                 Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS
37  +MRPROPER_DIRS  += ""  +#MRPROPER_DIRS  += include/config usr/include include/generated          \
38  +MRPROPER_FILES += ""  +#                  arch/*/include/generated
39    +#MRPROPER_FILES += .config .config.old .version .old_version             \
40    +#                  include/linux/version.h                               \
41    +#                Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS
42    +MRPROPER_DIRS  += ""
43    +MRPROPER_FILES += ""
44    
45   # clean - Delete most, but leave enough to build external modules   # clean - Delete most, but leave enough to build external modules
46   #   #
47  @@ -1153,7 +1150,7 @@ clean: archclean  @@ -1180,7 +1181,7 @@ clean: archclean
48   #   #
49   mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))   mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
50   mrproper: rm-files := $(wildcard $(MRPROPER_FILES))   mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
# Line 47  diff -urp linux-2.6.38-mga0.2/Makefile l Line 53  diff -urp linux-2.6.38-mga0.2/Makefile l
53    
54   PHONY += $(mrproper-dirs) mrproper archmrproper   PHONY += $(mrproper-dirs) mrproper archmrproper
55   $(mrproper-dirs):   $(mrproper-dirs):
56  diff -urp linux-2.6.38-mga0.2/scripts/kconfig/Makefile linux-2.6.38-mga0.2-mrproper/scripts/kconfig/Makefile  diff -Nurp linux-3.0/scripts/kconfig/Makefile linux-3.0-mrproper/scripts/kconfig/Makefile
57  --- linux-2.6.38-mga0.2/scripts/kconfig/Makefile        2011-03-20 05:16:56.702931902 +0200  --- linux-3.0/scripts/kconfig/Makefile  2011-07-15 02:37:27.265495491 +0300
58  +++ linux-2.6.38-mga0.2-mrproper/scripts/kconfig/Makefile       2011-03-20 05:18:01.828314994 +0200  +++ linux-3.0-mrproper/scripts/kconfig/Makefile 2011-07-15 14:13:12.384408058 +0300
59  @@ -12,26 +12,18 @@ Kconfig := Kconfig  @@ -12,26 +12,18 @@ Kconfig := Kconfig
60   endif   endif
61    
# Line 77  diff -urp linux-2.6.38-mga0.2/scripts/kc Line 83  diff -urp linux-2.6.38-mga0.2/scripts/kc
83    
84   # if no path is given, then use src directory to find file   # if no path is given, then use src directory to find file
85   ifdef LSMOD   ifdef LSMOD
86  @@ -98,26 +90,16 @@ update-po-config: $(obj)/kxgettext $(obj  @@ -99,26 +91,16 @@ update-po-config: $(obj)/kxgettext $(obj
87   PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig   PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
88    
89   allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf 3rdparty/Makefile   allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf 3rdparty/Makefile

Legend:
Removed from v.78708  
changed lines
  Added in v.134369

  ViewVC Help
Powered by ViewVC 1.1.30