- Disable rpath

This commit is contained in:
Stephen Gallagher 2011-02-11 09:50:05 -05:00
parent fd922ff5d1
commit a414d6995b

View File

@ -9,7 +9,7 @@
Name: libldb
Version: 1.0.0
Release: 1%{?dist}
Release: 2%{?dist}
Group: Development/Libraries
Summary: A schema-less, ldap like, API and database
Requires: libtalloc >= %{talloc_version}
@ -83,16 +83,14 @@ Development files for the Python bindings for the LDB library
%setup -q -n ldb-%{version}
%build
%configure --disable-rpath-install \
%configure --disable-rpath \
--disable-rpath-install \
--bundled-libraries=NONE \
--with-modulesdir=%{_libdir}/ldb/modules \
--with-privatelibdir=%{_libdir}/ldb
make V=1 %{?_smp_mflags}
%check
make V=1 %{?_smp_mflags} check
%install
make install DESTDIR=%{buildroot}
@ -163,6 +161,9 @@ rm -rf %{buildroot}
%postun -n pyldb -p /sbin/ldconfig
%changelog
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-2
- Disable rpath
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-1
- New upstream release 1.0.0
- SOname bump to account for module loading changes