From 8223e505820245906b171961ea61956106f7dae6 Mon Sep 17 00:00:00 2001 From: Daniel Díaz Date: Sun, 3 Oct 2010 15:45:14 -0500 Subject: ncurses: Fix export of LD_LIBRARY_PATH. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Richard Purdie --- meta/recipes-core/ncurses/ncurses.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-core') 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}"' 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 -- cgit v1.2.3-54-g00ecf