aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2013-04-24 05:37:29 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-05-28 09:23:57 -0400
commitf9619d693a3aad365598ed5f718bd5883c7cb7f8 (patch)
tree3fa1b875822c10fffa9ab5da7916bc92cb536522 /tools/perf
parent9c796ec8dbc8dbfe41ce35a1ccb1b59b47148daf (diff)
perf tools: Fix tab vs spaces issue in Makefile ifdef/endif
Unmatched spaces/tabs Makefile indentation could make the Makefile fails. While the tabed line could be considered sometimes as follow up for rule command, the mixed space tab meses up with makefile if conditions. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1366796273-4780-3-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index b0f164b133d9..c8fb0fd9fd37 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -90,7 +90,7 @@ endif
90 90
91# Treat warnings as errors unless directed not to 91# Treat warnings as errors unless directed not to
92ifneq ($(WERROR),0) 92ifneq ($(WERROR),0)
93 CFLAGS_WERROR := -Werror 93 CFLAGS_WERROR := -Werror
94endif 94endif
95 95
96ifeq ("$(origin DEBUG)", "command line") 96ifeq ("$(origin DEBUG)", "command line")
@@ -819,10 +819,10 @@ endif
819ifdef NO_DEMANGLE 819ifdef NO_DEMANGLE
820 BASIC_CFLAGS += -DNO_DEMANGLE 820 BASIC_CFLAGS += -DNO_DEMANGLE
821else 821else
822 ifdef HAVE_CPLUS_DEMANGLE 822 ifdef HAVE_CPLUS_DEMANGLE
823 EXTLIBS += -liberty 823 EXTLIBS += -liberty
824 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE 824 BASIC_CFLAGS += -DHAVE_CPLUS_DEMANGLE
825 else 825 else
826 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd 826 FLAGS_BFD=$(ALL_CFLAGS) $(ALL_LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
827 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd) 827 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
828 ifeq ($(has_bfd),y) 828 ifeq ($(has_bfd),y)