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

Reply via email to