OBS User unknown 2008-05-28 14:26:23 +00:00 committed by Git OBS Bridge
parent 1b55396674
commit 009ac89a35
3 changed files with 23 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed May 28 10:33:53 CEST 2008 - pkirsch@suse.de
- removed warning for bnc#394556,
thanks to David Binderman
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Mar 17 13:29:16 CET 2008 - yxu@suse.de Mon Mar 17 13:29:16 CET 2008 - yxu@suse.de

View File

@ -19,9 +19,10 @@ AutoReqProv: on
Summary: kernel test suite, micro benchmark Summary: kernel test suite, micro benchmark
Url: http://www.opensolaris.org/os/project/libmicro/ Url: http://www.opensolaris.org/os/project/libmicro/
Version: 0.4.0 Version: 0.4.0
Release: 37 Release: 52
Source0: %{name}-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2
Patch0: find_binary.patch Patch0: find_binary.patch
Patch1: removed_undefined_warning.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description %description
@ -38,6 +39,7 @@ Authors:
%prep %prep
%setup %setup
%patch0 -p1 %patch0 -p1
%patch1
%build %build
make make
@ -61,6 +63,9 @@ install -m 755 *.sh $RPM_BUILD_ROOT/usr/lib/libMicro/bin
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Wed May 28 2008 pkirsch@suse.de
- removed warning for bnc#394556,
thanks to David Binderman
* Mon Mar 17 2008 yxu@suse.de * Mon Mar 17 2008 yxu@suse.de
- retrieve the essential test executing file: bench.sh - retrieve the essential test executing file: bench.sh
- clarify the path for binary in bench.sh - clarify the path for binary in bench.sh

View File

@ -0,0 +1,11 @@
--- malloc.c
+++ malloc.c
@@ -77,7 +77,7 @@
break;
case 's':
opts[optscnt] = sizetoint(optarg);
- optscnt = ++optscnt & (31);
+ optscnt = (optscnt + 1) & (31);
break;
default:
return (-1);