diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-02-04 16:06:35 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-04 23:39:01 +0000 |
commit | 4701dc9b5f28afba56c12078348bfca84680adf5 (patch) | |
tree | 60606373d48835368676cc705ecca068ce10f688 | |
parent | 9d9f23333bfc24660f360e189d5f6478f546f8a2 (diff) | |
download | poky-4701dc9b5f28afba56c12078348bfca84680adf5.tar.gz |
ncurses: use closing curly brackets in FILES_${PN}-tools variable
This patch removes a workaround (needed for bitbake python parser) where
closing curly brackets were replaced by ascii code '\x7d'.
This commit requires a bitbake version with the
"data_smart: simple bracket matching inside python expressions" patch
applied.
(From OE-Core rev: c92ed91e40a05d56ab73097844788b185fa6e19c)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index fbe74d5925..35b8b94d64 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -284,8 +284,8 @@ FILES_${PN}-tools = "\ | |||
284 | ${bindir}/infotocap \ | 284 | ${bindir}/infotocap \ |
285 | ${bindir}/captoinfo \ | 285 | ${bindir}/captoinfo \ |
286 | ${bindir}/infocmp \ | 286 | ${bindir}/infocmp \ |
287 | ${bindir}/clear${@['', '.${BPN\x7d']['${CLASSOVERRIDE}' == 'class-target']} \ | 287 | ${bindir}/clear${@['', '.${BPN}']['${CLASSOVERRIDE}' == 'class-target']} \ |
288 | ${bindir}/reset${@['', '.${BPN\x7d']['${CLASSOVERRIDE}' == 'class-target']} \ | 288 | ${bindir}/reset${@['', '.${BPN}']['${CLASSOVERRIDE}' == 'class-target']} \ |
289 | ${bindir}/tack \ | 289 | ${bindir}/tack \ |
290 | ${bindir}/tabs \ | 290 | ${bindir}/tabs \ |
291 | " | 291 | " |