summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/ncurses
diff options
context:
space:
mode:
authorDaniel Díaz <mrchapp@gmail.com>2010-10-03 15:45:14 -0500
committerRichard Purdie <rpurdie@linux.intel.com>2010-10-04 09:21:42 +0100
commit8223e505820245906b171961ea61956106f7dae6 (patch)
treef9d54dacbf658b0ec65a75f057f1d110b66ce288 /meta/recipes-core/ncurses
parent31bd1412e55a0119c65513722f2f8bdc5499bbc9 (diff)
downloadpoky-8223e505820245906b171961ea61956106f7dae6.tar.gz
ncurses: Fix export of LD_LIBRARY_PATH.
This fixes the following error on do_install: > line 175: export: `=': not a valid identifier > line 175: export: `[...]/usr/lib': not a valid identifier Signed-off-by: Daniel Díaz <yosoy@danieldiaz.org> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/ncurses')
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 8cfc5e4885..cc84edaf0b 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -43,7 +43,7 @@ export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"'
43do_install() { 43do_install() {
44 # This is necessary so that the "tic" command executed during the install can 44 # This is necessary so that the "tic" command executed during the install can
45 # link with the correct libary in staging. 45 # link with the correct libary in staging.
46 export LD_LIBRARY_PATH = "${STAGING_LIBDIR_NATIVE}" 46 export LD_LIBRARY_PATH="${STAGING_LIBDIR_NATIVE}"
47 47
48 autotools_do_install 48 autotools_do_install
49 49