diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-13 00:23:38 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-13 00:23:38 -0400 |
| commit | 1700ff823b27b6572cf4c3cec66d279baa1a5d30 (patch) | |
| tree | 74542164e5df783004f90fa972837294729a324d /scripts/kconfig | |
| parent | 8841c8b3c4c4d9a9f2a6d30b463ad8d2c6e2f0ea (diff) | |
| parent | 699c659b49b5c7cf601fe454683841df16495c3e (diff) | |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild updates from Michal Marek:
"Kbuild changes for v3.16-rc1:
- cross-compilation fix so that cc-option is testing the right
compiler
- Fix for make defconfig all
- Using relative paths to the object and source directory where
possible, plus fixes for the fallout of the change
- several cleanups in the Makefiles and scripts
The powerpc fix is from today, because it was only discovered
recently. The rest has been in linux-next for some time"
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
powerpc: Avoid circular dependency with zImage.%
kbuild: create include/config directory in scripts/kconfig/Makefile
kbuild: do not create include/linux directory
Makefile: Fix unrecognized cross-compiler command line options
kbuild: do not add "selinux" to subdir- twice
um: Fix for relative objtree when generating x86 headers
kbuild: Use relative path when building in a subdir of the source tree
kbuild: Use relative path when building in the source tree
kbuild: Use relative path for $(objtree)
firmware: Use $(quote) in the Makefile
firmware: Simplify directory creation
kbuild: trivial - fix comment block indent
kbuild: trivial - remove trailing spaces
kbuild: support simultaneous "make %config" and "make all"
kbuild: move extra gcc checks to scripts/Makefile.extrawarn
Diffstat (limited to 'scripts/kconfig')
| -rw-r--r-- | scripts/kconfig/Makefile | 4 | ||||
| -rw-r--r-- | scripts/kconfig/streamline_config.pl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 844bc9da08da..573ff3f1f533 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
| @@ -33,11 +33,11 @@ oldconfig: $(obj)/conf | |||
| 33 | $< --$@ $(Kconfig) | 33 | $< --$@ $(Kconfig) |
| 34 | 34 | ||
| 35 | silentoldconfig: $(obj)/conf | 35 | silentoldconfig: $(obj)/conf |
| 36 | $(Q)mkdir -p include/generated | 36 | $(Q)mkdir -p include/config include/generated |
| 37 | $< --$@ $(Kconfig) | 37 | $< --$@ $(Kconfig) |
| 38 | 38 | ||
| 39 | localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf | 39 | localyesconfig localmodconfig: $(obj)/streamline_config.pl $(obj)/conf |
| 40 | $(Q)mkdir -p include/generated | 40 | $(Q)mkdir -p include/config include/generated |
| 41 | $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config | 41 | $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config |
| 42 | $(Q)if [ -f .config ]; then \ | 42 | $(Q)if [ -f .config ]; then \ |
| 43 | cmp -s .tmp.config .config || \ | 43 | cmp -s .tmp.config .config || \ |
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 31331723e810..9cb8522d8d22 100644 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl | |||
| @@ -589,7 +589,7 @@ while ($repeat) { | |||
| 589 | 589 | ||
| 590 | # Now we need to see if we have to check selects; | 590 | # Now we need to see if we have to check selects; |
| 591 | loop_select; | 591 | loop_select; |
| 592 | } | 592 | } |
| 593 | 593 | ||
| 594 | my %setconfigs; | 594 | my %setconfigs; |
| 595 | 595 | ||
