summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2011-12-04 14:09:14 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-05 16:16:12 +0000
commit2dfe16912168885be5901f35767db1d5c8eee4fc (patch)
tree01faea60b07a52bf56d964d7ef73c3ad9f379c0d
parent2639c37b25d5c19b92e8a4ce65075a6d807ff16e (diff)
downloadpoky-2dfe16912168885be5901f35767db1d5c8eee4fc.tar.gz
openjade-native_1.3.2.bb: remove CONFIGUREOPTS as vardep for do_configure
This variable was being expanded immediately and pulling in paths to the variable dependecies which causes it's sstate-cache to never be reused (From OE-Core rev: ddb8d3de34f809b9c72eb3a2223a74f75eff7911) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/openjade/openjade-native_1.3.2.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
index 0cce46eca2..18d311e9d5 100644
--- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
+++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
@@ -28,6 +28,11 @@ EXTRA_OECONF = "--enable-spincludedir=${STAGING_INCDIR}/OpenSP \
28# results in it being specified twice when configure is run. 28# results in it being specified twice when configure is run.
29CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--datadir=${datadir}', '--datadir=${STAGING_DATADIR}/sgml/openjade-${PV}')}" 29CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--datadir=${datadir}', '--datadir=${STAGING_DATADIR}/sgml/openjade-${PV}')}"
30 30
31# CONFIGUREOPTS has hard coded paths so we need to ignore it's vardeps
32# there are other bits in there too but they are picked up by other variable
33# dependencies so it all works out
34do_configure[vardepsexclude] += "CONNFIGUREOPTS"
35
31CFLAGS =+ "-I${S}/include" 36CFLAGS =+ "-I${S}/include"
32 37
33SSTATEPOSTINSTFUNCS += "openjade_sstate_postinst" 38SSTATEPOSTINSTFUNCS += "openjade_sstate_postinst"