aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2020-12-15 11:40:33 -0500
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2020-12-16 15:02:50 -0500
commitacbe537a30e6b8908502ef0e8b6ca56398f75f08 (patch)
tree69505cd52d1395655a188de6779db605da1f8aff /scripts
parent154510e7bb250dfc8db0d7f18cca71857f363ee7 (diff)
downloadlibtracefs-acbe537a30e6b8908502ef0e8b6ca56398f75f08.tar.gz
libtracefs: Remove KernelShark relics from build
The utils.mk file has variables to deal with building KernelShark as it was taken from the trace-cmd.git repo. libtracefs dose not build KernelShark and we can remove the variables that were for that. Link: https://lore.kernel.org/linux-trace-devel/20201215164107.816232723@goodmis.org Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/utils.mk28
1 files changed, 10 insertions, 18 deletions
diff --git a/scripts/utils.mk b/scripts/utils.mk
index ad73814..398b88a 100644
--- a/scripts/utils.mk
+++ b/scripts/utils.mk
@@ -2,15 +2,7 @@
# Utils
-ifeq ($(BUILDGUI), 1)
- GUI = 'GUI '
- GSPACE =
-else
- GUI =
- GSPACE = " "
-endif
-
- GOBJ = $(GSPACE)$(notdir $(strip $@))
+ GOBJ = $(notdir $(strip $@))
ifeq ($(VERBOSE),1)
@@ -32,15 +24,15 @@ ifeq ($(findstring 1,$(SILENT)$(VERBOSE)),1)
print_install =
print_update =
else
- print_compile = echo ' $(GUI)COMPILE '$(GOBJ);
- print_app_build = echo ' $(GUI)BUILD '$(GOBJ);
- print_fpic_compile = echo ' $(GUI)COMPILE FPIC '$(GOBJ);
- print_shared_lib_compile = echo ' $(GUI)COMPILE SHARED LIB '$(GOBJ);
- print_plugin_obj_compile = echo ' $(GUI)COMPILE PLUGIN OBJ '$(GOBJ);
- print_plugin_build = echo ' $(GUI)BUILD PLUGIN '$(GOBJ);
- print_static_lib_build = echo ' $(GUI)BUILD STATIC LIB '$(GOBJ);
- print_install = echo ' $(GUI)INSTALL '$(GSPACE)$1' to $(DESTDIR_SQ)$2';
- print_update = echo ' $(GUI)UPDATE '$(GOBJ);
+ print_compile = echo ' COMPILE '$(GOBJ);
+ print_app_build = echo ' BUILD '$(GOBJ);
+ print_fpic_compile = echo ' COMPILE FPIC '$(GOBJ);
+ print_shared_lib_compile = echo ' COMPILE SHARED LIB '$(GOBJ);
+ print_plugin_obj_compile = echo ' COMPILE PLUGIN OBJ '$(GOBJ);
+ print_plugin_build = echo ' BUILD PLUGIN '$(GOBJ);
+ print_static_lib_build = echo ' BUILD STATIC LIB '$(GOBJ);
+ print_install = echo ' INSTALL '$1' to $(DESTDIR_SQ)$2';
+ print_update = echo ' UPDATE '$(GOBJ);
endif
do_fpic_compile = \