mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
libtirpc: fix wrong path of command ln -sf
fix wrong path of command "ln -sf", the file should under folder rpcsvc (From OE-Core rev: 9dc1aaed83f0627db65f387de0b1e51503ab07b1) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1c6f000c25
commit
7ce92685a1
@@ -32,7 +32,7 @@ do_install_append() {
|
||||
done
|
||||
for link_header in ${D}${includedir}/tirpc/rpcsvc/*; do
|
||||
if [ -f $link_header -a ! -e ${D}/${includedir}/rpcsvc/$(basename $link_header) ]; then
|
||||
ln -sf ../tirpc/rpc/$(basename $link_header) ${D}${includedir}/rpcsvc/$(basename $link_header)
|
||||
ln -sf ../tirpc/rpcsvc/$(basename $link_header) ${D}${includedir}/rpcsvc/$(basename $link_header)
|
||||
fi
|
||||
done
|
||||
ln -sf tirpc/netconfig.h ${D}/${includedir}/netconfig.h
|
||||
|
||||
Reference in New Issue
Block a user