aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/flex
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-11-06 15:07:58 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-20 14:02:53 +0000
commit64030f37b34f75144f53eef42d5822ede79e08bd (patch)
tree5e368fa6b6b76c0549507749d90e23e8a46aa116 /meta/recipes-devtools/flex
parent8f06d2975ed7d5db3828dc116c0df72d1161e8e5 (diff)
downloadopenembedded-core-64030f37b34f75144f53eef42d5822ede79e08bd.tar.gz
flex: fix m4 issue on target
Flex needs m4 to run (see below) and, since the create_wrapper introduces a bash dependency on target, give the path to m4 binary in the configure command line. Snippet from the flex documentation: "The macro processor m4 must be installed wherever flex is installed. <...> m4 is only required at the time you run flex." [YOCTO #5329] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/flex')
-rw-r--r--meta/recipes-devtools/flex/flex.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc
index 43f1dda01c..96d5de5f74 100644
--- a/meta/recipes-devtools/flex/flex.inc
+++ b/meta/recipes-devtools/flex/flex.inc
@@ -13,6 +13,9 @@ inherit autotools gettext
M4 = "${bindir}/m4"
M4_class-native = "${STAGING_BINDIR_NATIVE}/m4"
+EXTRA_OECONF += "ac_cv_path_M4=${M4}"
+EXTRA_OEMAKE += "m4=${STAGING_BINDIR_NATIVE}/m4"
+
do_install_append_class-native() {
create_wrapper ${D}/${bindir}/flex M4=${M4}
}
@@ -20,3 +23,5 @@ do_install_append_class-native() {
do_install_append_class-nativesdk() {
create_wrapper ${D}/${bindir}/flex M4=${M4}
}
+
+RDEPENDS_${PN} += "m4"