Add bz1386451-trace-cmd-record-crash-f-before-e.patch
- Fix rpmlint error unstripped-binary-or-object - Resolves: rhbz#1386451
This commit is contained in:
parent
8591fcf47d
commit
f114a4ec57
13
bz1386451-trace-cmd-record-crash-f-before-e.patch
Normal file
13
bz1386451-trace-cmd-record-crash-f-before-e.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/trace-record.c b/trace-record.c
|
||||||
|
index a8d32d3..ab64418 100644
|
||||||
|
--- a/trace-record.c
|
||||||
|
+++ b/trace-record.c
|
||||||
|
@@ -3803,7 +3803,7 @@ void trace_record (int argc, char **argv)
|
||||||
|
const char *output = NULL;
|
||||||
|
const char *option;
|
||||||
|
struct event_list *event = NULL;
|
||||||
|
- struct event_list *last_event;
|
||||||
|
+ struct event_list *last_event = NULL;
|
||||||
|
struct buffer_instance *instance = &top_instance;
|
||||||
|
enum trace_type type = 0;
|
||||||
|
char *pids;
|
@ -1,10 +1,10 @@
|
|||||||
#%global checkout 20130723git07f0eee2
|
#%global checkout 20130723git07f0eee2
|
||||||
# git tag
|
# git tag
|
||||||
%global git_commit trace-cmd-v2.2.1
|
%global git_commit trace-cmd-v2.6
|
||||||
|
|
||||||
Name: trace-cmd
|
Name: trace-cmd
|
||||||
Version: 2.6
|
Version: 2.6
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GPLv2 and LGPLv2
|
License: GPLv2 and LGPLv2
|
||||||
Summary: A user interface to Ftrace
|
Summary: A user interface to Ftrace
|
||||||
|
|
||||||
@ -18,6 +18,7 @@ URL: http://git.kernel.org/?p=linux/kernel/git/rostedt/trace-cmd.git;a=summary
|
|||||||
Source0: trace-cmd-%{version}.tar.gz
|
Source0: trace-cmd-%{version}.tar.gz
|
||||||
Source1: kernelshark.desktop
|
Source1: kernelshark.desktop
|
||||||
Patch1: trace-cmd-2.6-libdir.patch
|
Patch1: trace-cmd-2.6-libdir.patch
|
||||||
|
Patch2: bz1386451-trace-cmd-record-crash-f-before-e.patch
|
||||||
|
|
||||||
BuildRequires: xmlto
|
BuildRequires: xmlto
|
||||||
BuildRequires: asciidoc
|
BuildRequires: asciidoc
|
||||||
@ -45,6 +46,7 @@ Kernelshark is the GUI frontend for analyzing data produced by
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q -n %{name}-%{version}
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# MANPAGE_DOCBOOK_XSL define is hack to avoid using locate
|
# MANPAGE_DOCBOOK_XSL define is hack to avoid using locate
|
||||||
@ -56,6 +58,7 @@ make V=1 CFLAGS="%{optflags} -D_GNU_SOURCE" MANPAGE_DOCBOOK_XSL=$MANPAGE_DOCBOOK
|
|||||||
make V=1 DESTDIR=%{buildroot} prefix=%{_prefix} install install_doc install_gui
|
make V=1 DESTDIR=%{buildroot} prefix=%{_prefix} install install_doc install_gui
|
||||||
find %{buildroot}%{_mandir} -type f | xargs chmod u-x,g-x,o-x
|
find %{buildroot}%{_mandir} -type f | xargs chmod u-x,g-x,o-x
|
||||||
find %{buildroot}%{_datadir} -type f | xargs chmod u-x,g-x,o-x
|
find %{buildroot}%{_datadir} -type f | xargs chmod u-x,g-x,o-x
|
||||||
|
find %{buildroot}%{_libdir} -type f -iname "*.so" | xargs chmod 0755
|
||||||
install -dm 755 %{buildroot}/%{_datadir}/applications
|
install -dm 755 %{buildroot}/%{_datadir}/applications
|
||||||
install -pm 644 %{SOURCE1} %{buildroot}/%{_datadir}/applications/kernelshark.desktop
|
install -pm 644 %{SOURCE1} %{buildroot}/%{_datadir}/applications/kernelshark.desktop
|
||||||
desktop-file-validate %{buildroot}/%{_datadir}/applications/kernelshark.desktop
|
desktop-file-validate %{buildroot}/%{_datadir}/applications/kernelshark.desktop
|
||||||
@ -76,6 +79,11 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/kernelshark.desktop
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 19 2016 Zamir SUN <zsun@fedoraproject.org> - 2.6-2
|
||||||
|
- Add bz1386451-trace-cmd-record-crash-f-before-e.patch
|
||||||
|
- Fix rpmlint error unstripped-binary-or-object
|
||||||
|
- Resolves: rhbz#1386451
|
||||||
|
|
||||||
* Thu Aug 18 2016 Jon Stanley <jonstanley@gmail.com> - 2.6-1
|
* Thu Aug 18 2016 Jon Stanley <jonstanley@gmail.com> - 2.6-1
|
||||||
- Upgrade to uptream 2.6
|
- Upgrade to uptream 2.6
|
||||||
- Rebase distro patch
|
- Rebase distro patch
|
||||||
|
Loading…
Reference in New Issue
Block a user