- Let rpmbuild strip binaries, make build more verbose.
- Resolves rhbz#669477 - libtalloc 2.0.5-6 binaries not stripped, - empty -debuginfo - Original patch by Ville Skyttä <ville.skytta@iki.fi>
This commit is contained in:
parent
de580c654e
commit
464d55ba8c
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
Name: libtalloc
|
Name: libtalloc
|
||||||
Version: 2.0.5
|
Version: 2.0.5
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
Summary: The talloc library
|
Summary: The talloc library
|
||||||
License: LGPLv3+
|
License: LGPLv3+
|
||||||
@ -57,13 +57,17 @@ Development libraries for pytalloc
|
|||||||
%build
|
%build
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
%configure --disable-rpath --bundled-libraries=NONE
|
%configure --disable-rpath --bundled-libraries=NONE
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
# Shared libraries need to be marked executable for
|
||||||
|
# rpmbuild to strip them and include them in debuginfo
|
||||||
|
find $RPM_BUILD_ROOT -name "*.so*" -exec chmod -c +x {} \;
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/libtalloc.a
|
rm -f $RPM_BUILD_ROOT%{_libdir}/libtalloc.a
|
||||||
rm -f $RPM_BUILD_ROOT/usr/share/swig/*/talloc.i
|
rm -f $RPM_BUILD_ROOT/usr/share/swig/*/talloc.i
|
||||||
|
|
||||||
@ -100,6 +104,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%postun -n pytalloc -p /sbin/ldconfig
|
%postun -n pytalloc -p /sbin/ldconfig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 14 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-7
|
||||||
|
- Let rpmbuild strip binaries, make build more verbose.
|
||||||
|
- Resolves rhbz#669477 - libtalloc 2.0.5-6 binaries not stripped,
|
||||||
|
- empty -debuginfo
|
||||||
|
- Original patch by Ville Skyttä <ville.skytta@iki.fi>
|
||||||
|
|
||||||
* Wed Jan 12 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-6
|
* Wed Jan 12 2011 Stephen Gallagher <sgallagh@redhat.com> - 2.0.5-6
|
||||||
- Install python bindings in the correct location
|
- Install python bindings in the correct location
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user