diff options
author | Saul Wold <sgw@linux.intel.com> | 2015-01-23 06:08:40 -0800 |
---|---|---|
committer | Vitaly Chernooky <vitaly.chernooky@globallogic.com> | 2015-03-06 15:06:09 +0200 |
commit | ee77c37500572f9b63e569f3ad0ca3ad35d70507 (patch) | |
tree | 8e0bbe0a4e07a36446ed634ed5a762c5db23afd8 | |
parent | b45c6c04dcecb83c3bc24fccdcadc3ff38a8bf2d (diff) | |
download | meta-tizen-ee77c37500572f9b63e569f3ad0ca3ad35d70507.tar.gz meta-tizen-ee77c37500572f9b63e569f3ad0ca3ad35d70507.tar.bz2 meta-tizen-ee77c37500572f9b63e569f3ad0ca3ad35d70507.zip |
crosswalk: Add missing quotes around export lines
This fixes a bashism: it works without quotes in bash and fails in dash.
Change-Id: I0d09d6352a78eb46557e47925b963ab123aba301
Signed-off-by: Vitaly Chernooky <vitaly.chernooky@globallogic.com>
-rw-r--r-- | meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc index 49248553..a3b3d4f5 100644 --- a/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc +++ b/meta-tizen-common-share/recipes-crosswalk/crosswalk/crosswalk-thirdparty.inc @@ -102,7 +102,7 @@ do_compile() { # warn about some conditions that cannot really be reached (ie. variables that # may be used uninitialized while in fact thay cannot be uninitialized). See # TC-2299. - export CXXFLAGS=`echo $CXXFLAGS | sed s,-finline-functions,,g` + export CXXFLAGS="`echo $CXXFLAGS | sed s,-finline-functions,,g`" # For ffmpeg on ia32. The original CFLAGS set by the gyp and config files in # src/third_party/ffmpeg already pass -O2 -fomit-frame-pointer, but Tizen's |