missing libraries

hi,

i have wrote a buildfile to make an os image supprting photon.
My problem is that all work fine a part photon.
with mkifs i always get the message :
warning: Host file ‘FCcore.so’ missing
warning: Host file ‘ttfFFcore.so’ missing
warning: Host file ‘PHFCcore.so’ missing

what’s the problem with this libraries
here is their declarations in the buildfile:
/lib/dll/font/FCcore.so=FCcore.so
/lib/dll/font/ttfFFcore.so=ttfFFcore.so
/lib/dll/font/PHFCcore.so=PHFCcore.so

thanks for help

You are trying to copy the libraries in the image but it doesnt f¡nd them.

If the libraries you want to copy are in the /lib/dll/font directory just write:

/lib/dll/font/FCcore.so=/lib/dll/font/FCcore.so
/lib/dll/font/ttfFFcore.so=/lib/dll/font/ttfFFcore.so
/lib/dll/font/PHFCcore.so=/lib/dll/PHFCcore.so

I dont know if I have understood you but I hope it helps.