Yocto - Files/directories were installed but not shipped in any package
Add below lines to your clblas_git.bb
FILES_${PN} += "${libdir}/*"
FILES_${PN}-dev = "${libdir}/* ${includedir}"
For good explanation you will get it here
If you are using new version of yocto this will help:
FILES:${PN} ="name of the dirs is not shipping";
In old versions it is FILES_${PN}
.