gcc-package-sdk.inc: ${layout_base_bindir} is not the path to where the real binary is.
authorTom Rini <trini@embeddedalley.com>
Fri, 19 Jun 2009 23:56:18 +0000 (19:56 -0400)
committerTom Rini <trini@embeddedalley.com>
Fri, 19 Jun 2009 23:56:18 +0000 (19:56 -0400)
The binary will always be two levels back, and it will always be in ${bindir}
as that's what we pass to configure, so basename that to find the right
directory name.  Bump INC_PR in gcc-canadian-sdk 4.2.4,
gcc-cross-sdk 4.2.4/4.3.3/4.4.0

recipes/gcc/gcc-canadian-sdk_4.2.4.bb
recipes/gcc/gcc-cross-sdk_4.2.4.bb
recipes/gcc/gcc-cross-sdk_4.3.3.bb
recipes/gcc/gcc-package-sdk.inc

index 409970b..dadb5b0 100644 (file)
@@ -1,6 +1,6 @@
 inherit canadian-sdk
 
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
 
 FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}"
 
index c5a0a1a..ab52a9a 100644 (file)
@@ -1,4 +1,4 @@
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
 
 inherit sdk
 
index 27a7ae0..6be2538 100644 (file)
@@ -1,4 +1,4 @@
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
 
 inherit sdk
 
index 3d9cc0c..dcf2c89 100644 (file)
@@ -48,10 +48,9 @@ do_install () {
        # Create the ${prefix}/${TARGET_SYS}/bin/* symlinks
        install -d ${D}${prefix}/${TARGET_SYS}/bin/
        for l in ${D}${bindir}/*; do
-               echo $l
-               ln -sf "../../${layout_base_bindir}/`basename $l`" "${D}${prefix}/${TARGET_SYS}/bin/`basename $l | sed -e 's,${TARGET_PREFIX},,'`"
+               ln -sf "../../`basename ${bindir}`/`basename $l`" "${D}${prefix}/${TARGET_SYS}/bin/`basename $l | sed -e 's,${TARGET_PREFIX},,'`"
        done
-       ln -sf "${bindir}/${TARGET_PREFIX}gcc${EXEEXT}" "${D}${prefix}/${TARGET_SYS}/bin/cc${EXEEXT}"
+       ln -sf "../../`basename ${bindir}`/${TARGET_PREFIX}gcc${EXEEXT}" "${D}${prefix}/${TARGET_SYS}/bin/cc${EXEEXT}"
 
        # Manually run the target stripper since we won't get it run by
        # the packaging.