[oe-commits] [meta-openembedded] 64/73: tk: export TK_LIBRARY='${libdir}/tk${VER}'

git at git.openembedded.org git at git.openembedded.org
Sun Nov 25 20:56:15 UTC 2018


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

armin_kuster pushed a commit to branch thud-next
in repository meta-openembedded.

commit 02a9767b3eab37642250aaeee5c17a10b38a759e
Author: Mingli Yu <Mingli.Yu at windriver.com>
AuthorDate: Wed Nov 14 15:47:47 2018 +0800

    tk: export TK_LIBRARY='${libdir}/tk${VER}'
    
    As there is below logic in configure.in
    [snip]
    test -z "$TK_LIBRARY" && TK_LIBRARY='$(prefix)/lib/tk$(VERSION)'
    [snip]
    
    It can make TK_LIBRARY to be $(prefix)/lib/tk$(VERSION)
    and then result in some files installed to
    /usr/lib/tk8.6 even when ${libdir} actually
    extract as /usr/lib64 and there is also a commit
    as below adding hack to workaround this.
    1ca29d1cd tk: make multilib build compatible and fix library install
    
    Export TK_LIBRARY='${libdir}/tk${VER}' to guarantee
    the files installed to the expected places and
    also remove the workaround in the previous commit
    1ca29d1cd.
    
    Signed-off-by: Mingli Yu <Mingli.Yu at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-devtools/tcltk/tk_8.6.8.bb | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/meta-oe/recipes-devtools/tcltk/tk_8.6.8.bb b/meta-oe/recipes-devtools/tcltk/tk_8.6.8.bb
index d0f6fe0..4e38525 100644
--- a/meta-oe/recipes-devtools/tcltk/tk_8.6.8.bb
+++ b/meta-oe/recipes-devtools/tcltk/tk_8.6.8.bb
@@ -45,19 +45,11 @@ EXTRA_OECONF = "\
     --with-tcl=${STAGING_BINDIR}/crossscripts \
     --libdir=${libdir} \
 "
-
+export TK_LIBRARY='${libdir}/tk${VER}'
 do_install_append() {
     ln -sf libtk${VER}.so ${D}${libdir}/libtk${VER}.so.0
     oe_libinstall -so libtk${VER} ${D}${libdir}
     ln -sf wish${VER} ${D}${bindir}/wish
-
-    # Even after passing libdir=${libdir} at config, some incorrect dirs are still generated for the multilib build
-    if [ "$libdir" != "/usr/lib" ]; then
-        # Move files to correct library directory
-        mv ${D}/usr/lib/tk${VER}/* ${D}/${libdir}/tk${VER}/
-        # Remove unneeded/incorrect dir ('usr/lib/')
-        rm -rf ${D}/usr/lib
-    fi
 }
 
 PACKAGECONFIG ??= "xft"

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


More information about the Openembedded-commits mailing list