Displaying 1 result from an estimated 1 matches for "python_ver".
2006 Apr 15
1
rpmbuild error with xapian-bindings-0.9.5
There are two issues with rpmbuild xapian-bindings-0.9.5.
xapian.pyo is missing in the source package but it is defined
in xapian-bindings.spec. After removing the following line from
xapian-bindings.spec I could finish rpmbuild without error.
%ghost %{_libdir}/python%{python_ver}/site-packages/xapian.pyo
csharp binding is turned on by default in xapian-bindings.spec.
As you know csharp binding requires a number of mono packages,
and they are not included in almost of Linux distributions.
Of course I can exclude csharp binding with -D parameter
as shown below.
rpmbui...