http://bugzilla.rpmfusion.org/show_bug.cgi?id=527
--- Comment #40 from Zarko Pintar <zarko.pintar(a)gmail.com> 2009-04-17 17:48:36 ---
(In reply to comment #38)
Searching both lib and lib64 won't work if both the 32-bit and
the 64-bit
version of the library are installed.
The correct solution is to write a patch which looks *only* in the lib64
directories, then apply it with:
%if "%{_lib}" == "lib64"
%patch0 -p1 -b .lib64
%endif
and in this case patch must change this:
ladspa_path = g_strdup
("/usr/local/lib/ladspa:/usr/lib/ladspa");
into this:
ladspa_path = g_strdup
("/usr/local/lib64/ladspa:/usr/lib64/ladspa");
is that correctly?
--
Configure bugmail:
http://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.