diff options
author | Raphael Silva <rapphil@gmail.com> | 2014-12-16 16:15:58 -0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-19 20:10:57 +0100 |
commit | a079fe2754ca0ac60ca00ca1653f770fc7b9ce14 (patch) | |
tree | 586e93fa14ccabcdb02e935bbd77e7f7cc04965a | |
parent | 15d8e3227ab5e934bf76f021aea8a201d128ce44 (diff) | |
download | meta-openembedded-a079fe2754ca0ac60ca00ca1653f770fc7b9ce14.tar.gz |
zsh: fixing B!=S build issue
Provided correct path for gnu-configize, since It
is beeing executed in ${B} so It is not able to find
configure.ac
Signed-off-by: Raphael Silva <rapphil@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/zsh/zsh.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/zsh/zsh.inc b/meta-oe/recipes-extended/zsh/zsh.inc index 6dc40bf508..b8fce807aa 100644 --- a/meta-oe/recipes-extended/zsh/zsh.inc +++ b/meta-oe/recipes-extended/zsh/zsh.inc | |||
@@ -8,8 +8,6 @@ SECTION = "base/shell" | |||
8 | LICENSE = "zsh" | 8 | LICENSE = "zsh" |
9 | LIC_FILES_CHKSUM = "file://LICENCE;md5=b7bc853894664be455a922db9805288e" | 9 | LIC_FILES_CHKSUM = "file://LICENCE;md5=b7bc853894664be455a922db9805288e" |
10 | 10 | ||
11 | PNBLACKLIST[zsh] ?= "BROKEN: doesn't build with B!=S (gnu-configize executed in ${B})" | ||
12 | |||
13 | DEPENDS = "ncurses bison-native" | 11 | DEPENDS = "ncurses bison-native" |
14 | 12 | ||
15 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz" | 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz" |
@@ -38,7 +36,7 @@ ALTERNATIVE_PRIORITY = "100" | |||
38 | export AUTOHEADER = "true" | 36 | export AUTOHEADER = "true" |
39 | 37 | ||
40 | do_configure () { | 38 | do_configure () { |
41 | gnu-configize --force | 39 | gnu-configize --force ${S} |
42 | oe_runconf | 40 | oe_runconf |
43 | } | 41 | } |
44 | 42 | ||