Fixes ccache_env.sh path
authorArnaud Renevier <a.renevier@samsung.com>
Mon, 9 Mar 2015 22:54:07 +0000 (15:54 -0700)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Currently, trying to build with --ccache results in the following error:
src/tizen_src/build/common.sh: line 97: src/build/ccache_env.sh: No such
file or directory

This patch fixes ccache_env.sh path

Change-Id: Iae86efdd8f8165b27dfa034f190978e706d01c69
Signed-off-by: Arnaud Renevier <a.renevier@samsung.com>
tizen_src/build/common.sh

index b5d3384..def2cb0 100755 (executable)
@@ -94,7 +94,7 @@ function parseHostBuildScriptParams() {
       --ccache)
         echo using ccache
         export USE_CCACHE=1
-        source $TOPDIR/build/ccache_env.sh ${platform}
+        source $TOPDIR/tizen_src/build/ccache_env.sh ${platform}
         ;;
       --clang)
         export USE_CLANG=1