Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies
@ 2013-09-04 19:02 Mischa Jonker
  2013-09-05  7:59 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mischa Jonker @ 2013-09-04 19:02 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
---
 package/perf/perf.mk |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/perf/perf.mk b/package/perf/perf.mk
index 7787c78..120353f 100644
--- a/package/perf/perf.mk
+++ b/package/perf/perf.mk
@@ -8,7 +8,7 @@
 PERF_SOURCE =
 PERF_VERSION = $(call qstrip,$(BR2_LINUX_KERNEL_VERSION))
 
-PERF_DEPENDENCIES = linux
+PERF_DEPENDENCIES = linux host-flex host-bison
 
 PERF_MAKE_FLAGS = \
 	$(LINUX_MAKE_FLAGS) \
@@ -40,14 +40,14 @@ define PERF_BUILD_CMDS
 			exit 1 ; \
 		fi \
 	fi
-	$(MAKE) -C $(LINUX_DIR)/tools/perf \
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/perf \
 		$(PERF_MAKE_FLAGS) O=$(@D)
 endef
 
 # After installation, we remove the Perl and Python scripts from the
 # target.
 define PERF_INSTALL_TARGET_CMDS
-	$(MAKE) -C $(LINUX_DIR)/tools/perf \
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/perf \
 		$(PERF_MAKE_FLAGS) O=$(@D) install
 	$(RM) -rf $(TARGET_DIR)/usr/libexec/perf-core/scripts/
 endef
-- 
1.7.9.5

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

* [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies
  2013-09-04 19:02 [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies Mischa Jonker
@ 2013-09-05  7:59 ` Thomas Petazzoni
  2013-09-05  8:03 ` Thomas De Schampheleire
  2013-09-07  6:13 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2013-09-05  7:59 UTC (permalink / raw)
  To: buildroot

Dear Mischa Jonker,

On Wed,  4 Sep 2013 21:02:10 +0200, Mischa Jonker wrote:
> Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
> ---
>  package/perf/perf.mk |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies
  2013-09-04 19:02 [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies Mischa Jonker
  2013-09-05  7:59 ` Thomas Petazzoni
@ 2013-09-05  8:03 ` Thomas De Schampheleire
  2013-09-07  6:13 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas De Schampheleire @ 2013-09-05  8:03 UTC (permalink / raw)
  To: buildroot

On Wed, Sep 4, 2013 at 9:02 PM, Mischa Jonker
<Mischa.Jonker@synopsys.com> wrote:
> Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
> ---
>  package/perf/perf.mk |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/package/perf/perf.mk b/package/perf/perf.mk
> index 7787c78..120353f 100644
> --- a/package/perf/perf.mk
> +++ b/package/perf/perf.mk
> @@ -8,7 +8,7 @@
>  PERF_SOURCE =
>  PERF_VERSION = $(call qstrip,$(BR2_LINUX_KERNEL_VERSION))
>
> -PERF_DEPENDENCIES = linux
> +PERF_DEPENDENCIES = linux host-flex host-bison
>
>  PERF_MAKE_FLAGS = \
>         $(LINUX_MAKE_FLAGS) \
> @@ -40,14 +40,14 @@ define PERF_BUILD_CMDS
>                         exit 1 ; \
>                 fi \
>         fi
> -       $(MAKE) -C $(LINUX_DIR)/tools/perf \
> +       $(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/perf \
>                 $(PERF_MAKE_FLAGS) O=$(@D)
>  endef
>
>  # After installation, we remove the Perl and Python scripts from the
>  # target.
>  define PERF_INSTALL_TARGET_CMDS
> -       $(MAKE) -C $(LINUX_DIR)/tools/perf \
> +       $(TARGET_MAKE_ENV) $(MAKE) -C $(LINUX_DIR)/tools/perf \
>                 $(PERF_MAKE_FLAGS) O=$(@D) install
>         $(RM) -rf $(TARGET_DIR)/usr/libexec/perf-core/scripts/
>  endef
> --

Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

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

* [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies
  2013-09-04 19:02 [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies Mischa Jonker
  2013-09-05  7:59 ` Thomas Petazzoni
  2013-09-05  8:03 ` Thomas De Schampheleire
@ 2013-09-07  6:13 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-09-07  6:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Mischa" == Mischa Jonker <Mischa.Jonker@synopsys.com> writes:

 Mischa> Signed-off-by: Mischa Jonker <mjonker@synopsys.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-09-07  6:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-04 19:02 [Buildroot] [PATCHv2] perf: Add host-bison, host-flex dependencies Mischa Jonker
2013-09-05  7:59 ` Thomas Petazzoni
2013-09-05  8:03 ` Thomas De Schampheleire
2013-09-07  6:13 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox