Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/busybox/files: busybox-1.17.1-make.patch
Date: Sun, 22 Aug 2010 17:34:13
Message-Id: 20100822173406.EC05320051@flycatcher.gentoo.org
1 vapier 10/08/22 17:34:06
2
3 Added: busybox-1.17.1-make.patch
4 Log:
5 Add fix from upstream for make-3.82 building #332911 by Lars Wendler.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-apps/busybox/files/busybox-1.17.1-make.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/files/busybox-1.17.1-make.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/busybox/files/busybox-1.17.1-make.patch?rev=1.1&content-type=text/plain
13
14 Index: busybox-1.17.1-make.patch
15 ===================================================================
16 diff -urpN busybox-1.17.1/Makefile busybox-1.17.1-make/Makefile
17 --- busybox-1.17.1/Makefile 2010-07-25 00:13:44.000000000 +0200
18 +++ busybox-1.17.1-make/Makefile 2010-08-22 09:30:33.000000000 +0200
19 @@ -433,7 +433,12 @@ ifeq ($(config-targets),1)
20 -include $(srctree)/arch/$(ARCH)/Makefile
21 export KBUILD_DEFCONFIG
22
23 -config %config: scripts_basic outputmakefile gen_build_files FORCE
24 +config: scripts_basic outputmakefile gen_build_files FORCE
25 + $(Q)mkdir -p include
26 + $(Q)$(MAKE) $(build)=scripts/kconfig $@
27 + $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease
28 +
29 +%config: scripts_basic outputmakefile gen_build_files FORCE
30 $(Q)mkdir -p include
31 $(Q)$(MAKE) $(build)=scripts/kconfig $@
32 $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease
33 @@ -1285,9 +1290,13 @@ endif
34 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
35
36 # Modules
37 -/ %/: prepare scripts FORCE
38 +%/: prepare scripts FORCE
39 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
40 $(build)=$(build-dir)
41 +/: prepare scripts FORCE
42 + $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
43 + $(build)=$(build-dir)
44 +
45 %.ko: prepare scripts FORCE
46 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
47 $(build)=$(build-dir) $(@:.ko=.o)