• Wang Nan's avatar
    tools lib traceevent: Install libtraceevent.a into libdir · bb53e176
    Wang Nan authored
    Before this patch, 'make install' installs libraries into bindir:
    
      $ make install DESTDIR=./tree
       INSTALL  trace_plugins
       INSTALL  libtraceevent.a
       INSTALL  libtraceevent.so
      $ find ./tree
       ./tree/
       ./tree/usr
       ./tree/usr/local
       ./tree/usr/local/bin
       ./tree/usr/local/bin/libtraceevent.a
       ./tree/usr/local/bin/libtraceevent.so
       ...
    
    /usr/local/lib( or lib64) should be a better place.
    
    This patch replaces 'bin' with libdir. For __LP64__ building, libraries
    are installed to /usr/local/lib64. For other building, to
    /usr/local/lib instead.
    
    After applying this patch:
    
      $ make install DESTDIR=./tree
       INSTALL  trace_plugins
       INSTALL  libtraceevent.a
       INSTALL  libtraceevent.so
      $ find ./tree
       ./tree
       ./tree/usr
       ./tree/usr/local
       ./tree/usr/local/lib64
       ./tree/usr/local/lib64/libtraceevent.a
       ./tree/usr/local/lib64/traceevent
       ./tree/usr/local/lib64/traceevent/plugins
       ./tree/usr/local/lib64/traceevent/plugins/plugin_mac80211.so
       ./tree/usr/local/lib64/traceevent/plugins/plugin_hrtimer.so
       ...
       ./tree/usr/local/lib64/libtraceevent.so
    Signed-off-by: default avatarWang Nan <wangnan0@huawei.com>
    Acked-by: default avatarJiri Olsa <jolsa@kernel.org>
    Acked-by: default avatarSteven Rostedt <rostedt@goodmis.org>
    Cc: Alexei Starovoitov <ast@plumgrid.com>
    Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
    Cc: Daniel Borkmann <daniel@iogearbox.net>
    Cc: David Ahern <dsahern@gmail.com>
    Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
    Cc: Namhyung Kim <namhyung@kernel.org>
    Cc: Paul Mackerras <paulus@samba.org>
    Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
    Cc: pi3orama@163.com
    Cc: Zefan Li <lizefan@huawei.com>
    Link: http://lkml.kernel.org/r/1431860222-61636-4-git-send-email-wangnan0@huawei.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
    bb53e176
Makefile 6.4 KB