diff options
author | Dongkyun Son <dongkyun.s@samsung.com> | 2023-09-18 10:39:33 +0900 |
---|---|---|
committer | Dongkyun Son <dongkyun.s@samsung.com> | 2023-10-19 15:59:17 +0900 |
commit | 37be7e168ee15b0e2f4ebcb047df026868e613c0 (patch) | |
tree | 9f7a1d977c34a6b70afc43b75fbd7303ce8452d4 | |
parent | 641fac903a4428618d9cf11f742bbc8668d830c2 (diff) | |
download | rootstrap-37be7e168ee15b0e2f4ebcb047df026868e613c0.tar.gz rootstrap-37be7e168ee15b0e2f4ebcb047df026868e613c0.tar.bz2 rootstrap-37be7e168ee15b0e2f4ebcb047df026868e613c0.zip |
option: set false by default
OPT_TARGET and OPT_EMULATOR are not affected in build.
Signed-off-by: Dongkyun Son <dongkyun.s@samsung.com>
-rwxr-xr-x | make_rootstrap.sh | 4 | ||||
-rwxr-xr-x | make_rootstrap_64.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/make_rootstrap.sh b/make_rootstrap.sh index 47145d2..65c8eba 100755 --- a/make_rootstrap.sh +++ b/make_rootstrap.sh @@ -137,8 +137,8 @@ function callRootstrapGen () { GLOBAL_ERROR="0" -OPT_TARGET=true -OPT_EMULATOR=true +OPT_TARGET=false +OPT_EMULATOR=false OPT_DOWNLOAD_RPM=false OPT_CLEAN=true OPT_CONF="" diff --git a/make_rootstrap_64.sh b/make_rootstrap_64.sh index f43655c..2110a66 100755 --- a/make_rootstrap_64.sh +++ b/make_rootstrap_64.sh @@ -137,8 +137,8 @@ function callRootstrapGen () { GLOBAL_ERROR="0" -OPT_TARGET=true -OPT_EMULATOR=true +OPT_TARGET=false +OPT_EMULATOR=false OPT_DOWNLOAD_RPM=false OPT_CLEAN=true OPT_CONF="" |