Skip to content

Commit 3b11538

Browse files
committed
Windows: Fix leaked RC variable which breaks cmake (fixes issue chromiumembedded#222)
1 parent 2d25e25 commit 3b11538

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

tools/compile.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99

1010
if "%1" == "" (

tools/make_all_jni_headers.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88

99
if "%1" == "" (
1010
echo ERROR: Please specify a target platform: win32 or win64

tools/make_distrib.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99

1010
if "%1" == "" (

tools/make_docs.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..\java
99

1010
set OUT_PATH="..\out\docs"

tools/make_jar.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88

99
if "%1" == "" (
1010
echo ERROR: Please specify a build target: win32 or win64

tools/make_jni_header.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99

1010
if "%1" == "" (

tools/make_readme.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99
if "%1" == "" (
1010
echo ERROR: Please specify a target platform: win32 or win64

tools/run.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99

1010
if "%1" == "" (

tools/run_tests.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
:: reserved. Use of this source code is governed by a BSD-style license
44
:: that can be found in the LICENSE file.
55

6-
set RC=
76
setlocal
7+
set RC=
88
cd ..
99

1010
if "%1" == "" (

0 commit comments

Comments
 (0)