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>
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