Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit77f416a

Browse files
committed
Clean up inconsistent backslash use in paths
Most of the MSVC Perl code uses forward slashes for file paths. Makethe few places that use backslashes the same. This also helps runningthat code on non-Windows.
1 parent8f4fb4c commit77f416a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎src/tools/msvc/build.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
use Mkvcbuild;
1414

15-
chdir('..\..\..')if (-d'..\msvc' &&-d'..\..\..\src');
15+
chdir('../../..')if (-d'../msvc' &&-d'../../../src');
1616
die'Must run from root or msvc directory'
17-
unless (-d'src\tools\msvc' &&-d'src');
17+
unless (-d'src/tools/msvc' &&-d'src');
1818

1919
# buildenv.pl is for specifying the build environment settings
2020
# it should contain lines like:

‎src/tools/msvc/mkvcbuild.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
use Mkvcbuild;
1515

16-
chdir('..\..\..')if (-d'..\msvc' &&-d'..\..\..\src');
16+
chdir('../../..')if (-d'../msvc' &&-d'../../../src');
1717
die'Must run from root or msvc directory'
18-
unless (-d'src\tools\msvc' &&-d'src');
18+
unless (-d'src/tools/msvc' &&-d'src');
1919

2020
die'Could not find config_default.pl'
2121
unless (-f'src/tools/msvc/config_default.pl');

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp