All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] scripts: fix "make install" when a directory or file named install exists
@ 2012-08-07  9:08 Andrew Worsley
  2012-08-30 13:30 ` Michal Marek
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Worsley @ 2012-08-07  9:08 UTC (permalink / raw)
  To: Michal Marek; +Cc: linux-kbuild

Allow "make install" to work even if a file or directory called install exists
Signed-off-by: Andrew Worsley <amworsley@gmail.com>
---
This is based on mainline  v3.5 version. It's almost trivial except I
spent about an hour trying to install the kernel output into a
directory install/<architecture> as per other packages I build before
I realised the obvious problem! So I thought it
was worth submitting to avoid other people hitting this problem: The
target install is not marked as PHONY anywhere.

diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index ff1720d..cf4b970 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -434,6 +434,7 @@ $(multi-used-m) : %.o: $(multi-objs-m) FORCE

 targets += $(multi-used-y) $(multi-used-m)

+PHONY += install

 # Descending
 # ---------------------------------------------------------------------------

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-08-30 13:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07  9:08 [Patch] scripts: fix "make install" when a directory or file named install exists Andrew Worsley
2012-08-30 13:30 ` Michal Marek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.