From: Youngcheol Kang Date: Wed, 25 Feb 2015 09:12:58 +0000 (+0900) Subject: Resolved the build problem which uses the ccache option X-Git-Tag: submit/tizen/20201118.160233~1186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=317d15ce6a8bb76761bb4d21572b6fb77ed8fb48;p=platform%2Fframework%2Fweb%2Fchromium-efl.git Resolved the build problem which uses the ccache option Below error were occurred when we uses the '--ccache' option build/apply_patches.sh: pushd: /var/src: No such file or directory build/apply_patches.sh: popd: directory stack empty The 'CHROME_SRC' value is already contained as '/var/src' when we uses the '--ccache' option. For resolving this problem, we removed the conditions which check whether 'CHROME_SRC' value was contained. Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=11572 Reviewed by: Antonio Gomes, joonhwan kwon Change-Id: I91716ecc67e0c36fb1d22943dc09ac582c8991b1 Signed-off-by: Youngcheol Kang --- diff --git a/tizen_src/build/common.sh b/tizen_src/build/common.sh index 2356dd4..c72f2f4 100644 --- a/tizen_src/build/common.sh +++ b/tizen_src/build/common.sh @@ -5,10 +5,7 @@ export SCRIPTDIR=`pwd -L` popd > /dev/null export TOPDIR=$(readlink -f "${SCRIPTDIR}/..") -if [[ -z "${CHROME_SRC}" ]]; then - # If $CHROME_SRC was not set, assume src subfolder in project directory is CHROME_SRC. - export CHROME_SRC="${TOPDIR}/src" -fi +export CHROME_SRC="${TOPDIR}/src" export CLANG_DIR="${TOPDIR}/src/third_party/llvm-build/Release+Asserts/"