[oe-commits] [openembedded-core] 10/18: libtirpc: fix wrong path of command ln -sf

git at git.openembedded.org git at git.openembedded.org
Wed Dec 4 12:54:25 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit ecb14be9b2eca2af6a65af6694feefa90e32d5b4
Author: Changqing Li <changqing.li at windriver.com>
AuthorDate: Tue Dec 3 11:50:42 2019 +0800

    libtirpc: fix wrong path of command ln -sf
    
    fix wrong path of command "ln -sf", the file should under folder
    rpcsvc
    
    Signed-off-by: Changqing Li <changqing.li at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb b/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
index 633cece..9d8533a 100644
--- a/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
+++ b/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb
@@ -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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list