You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, this SHOULD be ${prefix}/lib64/${host} in both cases. While it doesn't matter that much to the OS itself, all the libspandsp installers are hard-coded to be /usr/lib (which is a symlink to /usr/lib64, so that doesn't matter) but also require something to match a glob of /usr/lib/*/libspandsp
However, the end result is that it does nothing. Overriding libdir is NOT something that it should be doing, so a better idea is to remove that line totally.
The text was updated successfully, but these errors were encountered:
xrobau
referenced
this issue
in xrobau/freeswitch-ubuntubuilder
Oct 18, 2023
One of the changes made in d9681c3 was to add this line to configure.ac:
Unfortunately, this SHOULD be
${prefix}/lib64/${host}
in both cases. While it doesn't matter that much to the OS itself, all the libspandsp installers are hard-coded to be/usr/lib
(which is a symlink to /usr/lib64, so that doesn't matter) but also require something to match a glob of /usr/lib/*/libspandspFor an example, see https://github.com/freeswitch/spandsp/blob/master/debian/libspandsp3.install
This is fixed by this patch, which simply adds ${host} to both sides. xrobau/freeswitch-ubuntubuilder@7924f4a#diff-1acd998070a18f72fce00e939f0d05162806ad9af641eb0821df6c78a58b6f41
However, the end result is that it does nothing. Overriding libdir is NOT something that it should be doing, so a better idea is to remove that line totally.
The text was updated successfully, but these errors were encountered: