From: Noor Ahsan Date: Tue, 31 Aug 2010 00:32:34 +0000 (+0000) Subject: tcl: Merged native and target packages using BBCLASSEXTEND X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=296f8244f324c355d693307ded8d57b0e49752b6;p=openembedded.git tcl: Merged native and target packages using BBCLASSEXTEND * Set BBCLASSEXTEND to native. * Change /usr/include/tcl-private to ${includedir}/tcl-private so that it can be used for native package. * Bump PR to "r8" Signed-off-by: Noor Ahsan Signed-off-by: Khem Raj --- diff --git a/recipes/tcltk/tcl_8.5.8.bb b/recipes/tcltk/tcl_8.5.8.bb index e8905f0fa2..86302407c7 100644 --- a/recipes/tcltk/tcl_8.5.8.bb +++ b/recipes/tcltk/tcl_8.5.8.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Tool Command Language" HOMEPAGE = "http://tcl.sourceforge.net" SECTION = "devel/tcltk" LICENSE = "tcl" -PR = "r7" +PR = "r8" SRC_URI = "\ ${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ @@ -48,8 +48,9 @@ FILES_${PN} += "${libdir}/tcl*" FILES_${PN}-dev += "${libdir}/tclConfig.sh" BINCONFIG_GLOB = "*Config.sh" +BBCLASSEXTEND = "native" tcl_sysroot() { - sed -i 's:/usr/include/tcl-private:${STAGING_INCDIR}/tcl-${PV}:' tclConfig.sh + sed -i 's:${includedir}/tcl-private:${STAGING_INCDIR}/tcl-${PV}:' tclConfig.sh }