projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e75575
)
perf tools: Drop CROSS_COMPILE from flex and bison calls
author
Otavio Salvador
<otavio@ossystems.com.br>
Wed, 11 Apr 2012 12:44:30 +0000
(09:44 -0300)
committer
Arnaldo Carvalho de Melo
<acme@redhat.com>
Mon, 16 Apr 2012 19:10:22 +0000
(16:10 -0300)
The flex and bison tools generate arch-independent C code so its
binaries are not prefixed with the target-arch prefix. With this patch
the Linux 3.4-rc2 can be successfuly build on OE-Core.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Link:
http://lkml.kernel.org/r/1334148270-13139-1-git-send-email-otavio@ossystems.com.br
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/tools/perf/Makefile
b/tools/perf/Makefile
index 03059e75665a267b39baa45b5f7e107557b96542..9bf3fc759344031d05cb915c97d770cddef5a756 100644
(file)
--- a/
tools/perf/Makefile
+++ b/
tools/perf/Makefile
@@
-234,8
+234,8
@@
endif
export PERL_PATH
-FLEX =
$(CROSS_COMPILE)
flex
-BISON=
$(CROSS_COMPILE)
bison
+FLEX = flex
+BISON= bison
$(OUTPUT)util/parse-events-flex.c: util/parse-events.l
$(QUIET_FLEX)$(FLEX) --header-file=$(OUTPUT)util/parse-events-flex.h -t util/parse-events.l > $(OUTPUT)util/parse-events-flex.c