]> code.ossystems Code Review - openembedded-core.git/commitdiff
ncurses: Fix export of LD_LIBRARY_PATH.
authorDaniel Díaz <mrchapp@gmail.com>
Sun, 3 Oct 2010 20:45:14 +0000 (15:45 -0500)
committerRichard Purdie <rpurdie@linux.intel.com>
Mon, 4 Oct 2010 08:21:42 +0000 (09:21 +0100)
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>
meta/recipes-core/ncurses/ncurses.inc

index 8cfc5e4885bb890b2653207e034eb5d124ec46f5..cc84edaf0b013c045b2b500dea8c13556fd85575 100644 (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