commit | 4b6ab94eabe4f55371cff4569750bb3996c55db6 | [log] [tgz] |
---|---|---|
author | Josh Poimboeuf <[email protected]> | Tue Dec 15 09:39:39 2015 -0600 |
committer | Arnaldo Carvalho de Melo <[email protected]> | Thu Dec 17 14:27:14 2015 -0300 |
tree | db5b95ed4647e3455bb1b1d4bb24137708a97829 | |
parent | 2f4ce5ec1d447beb42143a9653716a2ab025161e [diff] [blame] |
perf subcmd: Create subcmd library Move the subcommand-related files from perf to a new library named libsubcmd.a. Since we're moving files anyway, go ahead and rename 'exec_cmd.*' to 'exec-cmd.*' to be consistent with the naming of all the other files. Signed-off-by: Josh Poimboeuf <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/r/c0a838d4c878ab17fee50998811612b2281355c1.1450193761.git.jpoimboe@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 1f00dc7c..e18f1b9 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c
@@ -21,7 +21,7 @@ #include "util/evsel.h" #include "util/annotate.h" #include "util/event.h" -#include "util/parse-options.h" +#include <subcmd/parse-options.h> #include "util/parse-events.h" #include "util/thread.h" #include "util/sort.h"