diff options
author | Seunghwan Lee <sh.cat.lee@samsung.com> | 2016-10-07 20:45:45 +0900 |
---|---|---|
committer | Seunghwan Lee <sh.cat.lee@samsung.com> | 2016-10-07 20:45:45 +0900 |
commit | 3307fac5553d5ff9bcd7757d87be9c8a8cc2d200 (patch) | |
tree | a7ee64c0e7735774d4db00b43b8465d9e1b559fe /script | |
parent | 4ec1635daa4d628be04e580e8bb4f61f73ee4812 (diff) | |
download | rootstrap-3307fac5553d5ff9bcd7757d87be9c8a8cc2d200.tar.gz rootstrap-3307fac5553d5ff9bcd7757d87be9c8a8cc2d200.tar.bz2 rootstrap-3307fac5553d5ff9bcd7757d87be9c8a8cc2d200.zip |
SCRIPT : remove old properties
Change-Id: Ied90c7501f8d4a777012b18d535ceb7491b49a8c
Signed-off-by: Seunghwan Lee <sh.cat.lee@samsung.com>
Diffstat (limited to 'script')
-rwxr-xr-x | script/rootstrap_plugin_gen_1.0.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/script/rootstrap_plugin_gen_1.0.sh b/script/rootstrap_plugin_gen_1.0.sh index 7ba2918..f3daa01 100755 --- a/script/rootstrap_plugin_gen_1.0.sh +++ b/script/rootstrap_plugin_gen_1.0.sh @@ -1,5 +1,5 @@ #!/bin/bash - +# Version 1.0.1 function log() { printf "[${SCRIPT_NAME}:${BASH_LINENO[0]}] ${@}\n" @@ -70,14 +70,14 @@ xmlstarlet ed -L -s "/extension/rootstrap" -t elem -n "property" -v "" $PLUGIN_F xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "key" -v "COMPILER_MISCELLANEOUS_OPTION" $PLUGIN_FILENAME xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "value" -v "" $PLUGIN_FILENAME -xmlstarlet ed -L -s "/extension/rootstrap" -t elem -n "property" -v "" $PLUGIN_FILENAME -xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "key" -v "RS_LIBRARIES" $PLUGIN_FILENAME -xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "value" -v "$RS_LIB_OPT" $PLUGIN_FILENAME - # OLD tool options -xmlstarlet ed -L -s "/extension/rootstrap" -t elem -n "property" -v "" $PLUGIN_FILENAME -xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "key" -v "EDJE_CC" $PLUGIN_FILENAME -xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "value" -v "#{SBI_HOME}/../../platforms/tizen-${PLATFORM_VERSION}/common/efl-tool/efl-tools/bin/edje_cc" $PLUGIN_FILENAME +#xmlstarlet ed -L -s "/extension/rootstrap" -t elem -n "property" -v "" $PLUGIN_FILENAME +#xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "key" -v "RS_LIBRARIES" $PLUGIN_FILENAME +#xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "value" -v "$RS_LIB_OPT" $PLUGIN_FILENAME + +#xmlstarlet ed -L -s "/extension/rootstrap" -t elem -n "property" -v "" $PLUGIN_FILENAME +#xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "key" -v "EDJE_CC" $PLUGIN_FILENAME +#xmlstarlet ed -L -s "/extension/rootstrap/property[last()]" -t attr -n "value" -v "#{SBI_HOME}/../../platforms/tizen-${PLATFORM_VERSION}/common/efl-tool/efl-tools/bin/edje_cc" $PLUGIN_FILENAME # end OLD tool option - should be deprecated GCC_VERSION="4.9" LLVM_VERSION="3.6" |