I am now on my 32bits platform and following your advices about
conf-install-libexec, I have the same issue as before.
Build system always search in library.so instead of my libexec path.
OK, my bad, thanks for sending a full log, it helped.
There's a bug in the build system indeed, shame on me.
Patch attached, new release coming soon.
--
Laurent
--- package/export.old
+++ package/export
@@ -83,7 +83,7 @@
echo "Copying unexported binaries to $libexec ..."
for i in `cut -f1 < package/$1 | grep -vFf package/$1.exported` ; do
rm -f "$libexec/$i"'{new}'
- cp -P "$dir/$i" "$libexec/$i"'{new}'
+ cp -P "$1/$i" "$libexec/$i"'{new}'
mv -f "$libexec/$i"'{new}' "$libexec/$i"
done
}