diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 01:15:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:18:23 +0000 |
commit | 64cd9855c8dada8bb4eac8d00255473e38678163 (patch) | |
tree | e66e14ac328e79b0b62baf13b3e8f88b3ecf4d7a /meta/recipes-core | |
parent | de258a9e90d2cc043c3cddc62dccdc1bff8c86ee (diff) | |
download | poky-64cd9855c8dada8bb4eac8d00255473e38678163.tar.gz |
ncurses: Fix case where ${B} != ${S}
This change allows ${B} != ${S} builds to work as otherwise
gnu-configize is executed in the incorrect directory.
(From OE-Core rev: 77d09b5ffd7867809004d7e3a6285e19087713b7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index 040495c84e..bcb9c94395 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -94,7 +94,7 @@ do_configure() { | |||
94 | # not the case for /dev/null redirections) | 94 | # not the case for /dev/null redirections) |
95 | export cf_cv_working_poll=yes | 95 | export cf_cv_working_poll=yes |
96 | 96 | ||
97 | gnu-configize --force | 97 | ( cd ${S}; gnu-configize --force ) |
98 | ncurses_configure "narrowc" || \ | 98 | ncurses_configure "narrowc" || \ |
99 | return 1 | 99 | return 1 |
100 | ! ${ENABLE_WIDEC} || \ | 100 | ! ${ENABLE_WIDEC} || \ |