1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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>
This commit is contained in:
Daniel Díaz
2010-10-03 15:45:14 -05:00
committed by Richard Purdie
parent 31bd1412e5
commit 8223e50582
+1 -1
View File
@@ -43,7 +43,7 @@ export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"'
do_install() {
# This is necessary so that the "tic" command executed during the install can
# link with the correct libary in staging.
export LD_LIBRARY_PATH = "${STAGING_LIBDIR_NATIVE}"
export LD_LIBRARY_PATH="${STAGING_LIBDIR_NATIVE}"
autotools_do_install