]> git.baikalelectronics.ru Git - kernel.git/commit
Revert "Makefile: Fix install error with make -j option"
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 11 Jul 2013 02:02:51 +0000 (19:02 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 11 Jul 2013 02:02:51 +0000 (19:02 -0700)
commit2c53edd2a879414dea8bfa7764f10aba7a624112
tree1cf80d3be3fc6137cf14428ac3a80dad79ebd759
parent2514ed01899882f940fd19c5b2c86d274eea173b
Revert "Makefile: Fix install error with make -j option"

This reverts commit 14b9d24f0222b5623e7e24c1224f6d2bdaec0abb.

It is completely and utterly broken.  Module install should not build
any files, and adding broken dependencies to "help" it build files is
complete and utter sh*t.

The kernel should not be built by root, and "make install" and "make
module_install" (that for obvious reasons need to be run as root)
absolutely must not build any files.  They should only ever copy the
already-built files over.

So having dependencies for the install targets is wrong, wrong, wrong.

If you try to install a kernel without building it first, you *should*
get errors. The build system shouldn't try to help root build the files.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Makefile