Fixes: cannot build mobile without --include-all
authorArnaud Renevier <a.renevier@samsung.com>
Wed, 15 Apr 2015 22:57:03 +0000 (15:57 -0700)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Since packaging folder is a link, it is not handled by git. Then, gbs
needs --include-all parameter. Otherwise, mobile build will fail with

error: No source package found at /path/to/directory/src
error: <gbs>some packages failed to be built

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

index 6d79783..5227876 100755 (executable)
@@ -242,5 +242,5 @@ function setupAndExecuteTargetBuild() {
   rm -f packaging
   ln -sf tizen_src/packaging packaging
 
-  gbs $CONF_FLAG build $PROFILE_FLAG -A $ARCHITECTURE --incremental "${ARGS[@]}"
+  gbs $CONF_FLAG build $PROFILE_FLAG --include-all -A $ARCHITECTURE --incremental "${ARGS[@]}"
 }