diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 21:59:04 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-07 21:59:04 +0000 |
commit | 0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e (patch) | |
tree | f9a3b8e9f4a4387155e0a27a152c20170e8c22a1 /chrome/tools | |
parent | d7a22bdd4c47fd1dc646f03d15d27081bfd1987b (diff) | |
download | chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.zip chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.tar.gz chromium_src-0c64428c4e8d2bef0fc4c9fb5aee8be70032dc4e.tar.bz2 |
Remove the third_party/gnu directory, switching scripts that use unix like tools to cygwin.
BUGS=1313603
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@539 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/build/win/flattened_html_file.bat | 4 | ||||
-rw-r--r-- | chrome/tools/build/win/version.bat | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/tools/build/win/flattened_html_file.bat b/chrome/tools/build/win/flattened_html_file.bat index 310d88d..9dcd7b6 100644 --- a/chrome/tools/build/win/flattened_html_file.bat +++ b/chrome/tools/build/win/flattened_html_file.bat @@ -8,7 +8,7 @@ set InFile=%~1 set SolutionDir=%~2 set OutFile=%~3 -:: Use GNU tools -call %SolutionDir%\..\third_party\gnu\setup_env.bat +:: Put cygwin in the path +call %SolutionDir%\..\third_party\cygwin\setup_env.bat %SolutionDir%\..\third_party\python_24\python.exe %SolutionDir%\tools\build\win\html_inline.py %InFile% %OutFile% diff --git a/chrome/tools/build/win/version.bat b/chrome/tools/build/win/version.bat index 0cda045..0a9504f 100644 --- a/chrome/tools/build/win/version.bat +++ b/chrome/tools/build/win/version.bat @@ -9,8 +9,8 @@ set IntDir=%~3 set OutFile=%~4 set VarsBat=%IntDir%/vers-vars.bat -:: Use GNU tools -call %SolutionDir%\..\third_party\gnu\setup_env.bat +:: Put cygwin in the path +call %SolutionDir%\..\third_party\cygwin\setup_env.bat :: Load version digits as environment variables cat %SolutionDir%\VERSION | sed "s/\(.*\)/set \1/" > %VarsBat% |