diff options
-rw-r--r-- | meta-ti-extras/recipes/libgles/libgles-omap3_4.10.00.01.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta-ti-extras/recipes/libgles/libgles-omap3_4.10.00.01.bb b/meta-ti-extras/recipes/libgles/libgles-omap3_4.10.00.01.bb index 1c9824c..9265ffe 100644 --- a/meta-ti-extras/recipes/libgles/libgles-omap3_4.10.00.01.bb +++ b/meta-ti-extras/recipes/libgles/libgles-omap3_4.10.00.01.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require recipes-graphics/libgles/libgles-omap3-no-x.inc | 1 | require recipes-graphics/libgles/libgles-omap3-no-x.inc |
2 | 2 | ||
3 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:${COREBASE}/../meta-ti/recipes-graphics/libgles/${PN}" | 3 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:${COREBASE}/../meta-ti/recipes-graphics/libgles/${PN}:" |
4 | 4 | ||
5 | LICENSE = "TI-TSPA" | 5 | LICENSE = "TI-TSPA" |
6 | 6 | ||
@@ -46,3 +46,10 @@ SRC_URI[sha256sum] := "${@base_contains('TUNE_FEATURES', 'callconvention-hard', | |||
46 | S = "${WORKDIR}/Graphics_SDK_${SGXPV}" | 46 | S = "${WORKDIR}/Graphics_SDK_${SGXPV}" |
47 | 47 | ||
48 | LIBGLESWINDOWSYSTEM = "libpvrPVR2D_FRONTWSEGL.so.1" | 48 | LIBGLESWINDOWSYSTEM = "libpvrPVR2D_FRONTWSEGL.so.1" |
49 | |||
50 | do_configure_append() { | ||
51 | # PLAT_CC might not have needed arguments, so use CC instead. | ||
52 | for mak in $(find ${S} -name "*.mak" -o -name Makefile) ; do | ||
53 | sed -i -e s:\$\(PLAT_CC\):\$\(CC\):g $mak | ||
54 | done | ||
55 | } | ||