perf tools: Remove '?=' Makefile STRIP assignment
No need to use '?=' assignment for STRIP variable, the standard '=' does the same job without creating confusion. Suggested-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Stephane Eranian <eranian@google.com> Cc: Sam Ravnborg <sam@ravnborg.org> Link: http://lkml.kernel.org/r/1369398928-9809-25-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
2fe7374659
commit
0dce60f530
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ FIND = find
|
||||||
INSTALL = install
|
INSTALL = install
|
||||||
FLEX = flex
|
FLEX = flex
|
||||||
BISON = bison
|
BISON = bison
|
||||||
STRIP ?= strip
|
STRIP = strip
|
||||||
|
|
||||||
LK_DIR = $(srctree)/tools/lib/lk/
|
LK_DIR = $(srctree)/tools/lib/lk/
|
||||||
TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/
|
TRACE_EVENT_DIR = $(srctree)/tools/lib/traceevent/
|
||||||
|
|
Loading…
Reference in a new issue