From: Youngsoo Choi Date: Mon, 23 May 2016 07:52:05 +0000 (+0900) Subject: Revert "Make a command 'git submodule' work in spec file" X-Git-Tag: submit/tizen_mobile/20160603.100254~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d67e4e0f6554043079d71615841cf5469598e83;p=platform%2Fupstream%2Fv8.git Revert "Make a command 'git submodule' work in spec file" This reverts commit d5270085726338b2e3320b7402420ce9dba764b1. The command '$git submodule' is not available on obs server. Change-Id: I00ce70b562c81e37b72691cc1c735625bdaee9c1 --- diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 7c319033a..000000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "build/gyp"] - path = build/gyp - url = https://chromium.googlesource.com/external/gyp.git diff --git a/build/common.sh b/build/common.sh index f490183b3..ad10b79cc 100644 --- a/build/common.sh +++ b/build/common.sh @@ -77,16 +77,6 @@ function setupAndExecuteTargetBuild() { count=$(( $count + 1 )) ARGS[$count]="_enable_test 1" ;; - --skip-module) - ARGS[$count]=--define - count=$(( $count + 1 )) - ARGS[$count]="_skip_module 1" - ;; - --hq-proxy) - ARGS[$count]=--define - count=$(( $count + 1 )) - ARGS[$count]="_hq_proxy 1" - ;; *) ARGS[$count]="$1" ;; diff --git a/build/get_third_party_modules.sh b/build/get_third_party_modules.sh deleted file mode 100755 index 85250222d..000000000 --- a/build/get_third_party_modules.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -function download_third_party_modules() { - git config --global http.sslVerify false - git submodule update --init - pushd build/gyp; git reset --hard 08429da7; popd; -} - -download_third_party_modules diff --git a/packaging/v8.spec b/packaging/v8.spec index 3e098fd15..34b51820c 100644 --- a/packaging/v8.spec +++ b/packaging/v8.spec @@ -40,7 +40,7 @@ Source1: v8.manifest %define chromium_efl_tizen_profile ivi %endif -BuildRequires: python, python-xml, git, curl +BuildRequires: python, python-xml, git %ifarch armv7l BuildRequires: python-accel-armv7l-cross-arm %endif @@ -78,16 +78,6 @@ if [ ! -d %{buildroot}/../../OTHER/ -a -f /opt/testing/bin/rpmlint ]; then mkdir -p %{buildroot}/../../OTHER/ fi -%if "%{?_hq_proxy}" == "1" -echo "* Setup HQ proxy" -export http_proxy="http://10.112.1.184:8080" -export https_proxy="https://10.112.1.184:8080" -%endif - -%if "%{?_skip_module}" != "1" -build/get_third_party_modules.sh -%endif - %ifarch aarhc64 export ADDITION_OPTION=" -finline-limit=64 -foptimize-sibling-calls -fno-unwind-tables -fno-exceptions -Os" %endif