Hi,

the reason that this doesn't work is in debain/patches/support-python-module-in-place.patch:

libs = ["-L../obj-%s/src -lsentencepiece -lsentencepiece_train" % arch]


this needs to be a list of command line arguments, so

libs = ["-L../obj-%s/src" % arch, "-lsentencepiece", "-lsentencepiece_train"]

Currently it adds a bogus search path (containing spaces and the remaining "next args" and no libraries).

Best regards

Thomas

--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers

Reply via email to