All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] pkg-generic: support patching local source code
@ 2015-04-09  0:28 Nicolas S. Dade
  2015-04-09 22:12 ` Yann E. MORIN
  0 siblings, 1 reply; 7+ messages in thread
From: Nicolas S. Dade @ 2015-04-09  0:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Nicolas S. Dade <nic.dade@mistsys.com>
---
 package/pkg-generic.mk | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk
index f77aab2..09f2405 100644
--- a/package/pkg-generic.mk
+++ b/package/pkg-generic.mk
@@ -555,15 +555,18 @@ else
 # In the package override case, the sequence of steps
 #  source, by rsyncing
 #  depends
+#  patch
 #  configure
 
 # Use an order-only dependency so the "<pkg>-clean-for-rebuild" rule
 # can remove the stamp file without triggering the configure step.
-$$($(2)_TARGET_CONFIGURE): | $$($(2)_TARGET_RSYNC)
+$$($(2)_TARGET_CONFIGURE): | $$($(2)_TARGET_PATCH)
 
 $(1)-depends:		$$($(2)_FINAL_DEPENDENCIES)
 
-$(1)-patch:		$(1)-rsync
+$(1)-patch:		$$($(2)_TARGET_PATCH)
+$$($(2)_TARGET_PATCH):	$$($(2)_TARGET_RSYNC)
+
 $(1)-extract:		$(1)-rsync
 
 $(1)-rsync:		$$($(2)_TARGET_RSYNC)
-- 
1.9.1

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

end of thread, other threads:[~2015-04-10 21:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-09  0:28 [Buildroot] [PATCH 1/1] pkg-generic: support patching local source code Nicolas S. Dade
2015-04-09 22:12 ` Yann E. MORIN
2015-04-09 22:21   ` Nicolas Dade
2015-04-09 22:40     ` Yann E. MORIN
     [not found]       ` <CAB7JjA_EKRS9uEX9MhgUVpovh4VKoUF2vx1wE2Q+a9baZTRyCQ@mail.gmail.com>
2015-04-10 17:30         ` Yann E. MORIN
2015-04-10 21:08     ` Arnout Vandecappelle
2015-04-10 21:31       ` Nicolas Dade

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.