tools/configure.c: Fix backward interpretation of options, -l was selecting Windows and -w was selecting Linux. This is part of SourceForege Ticket #39
This commit is contained in:
parent
e22deff1ab
commit
9ee6b2db70
@ -178,13 +178,13 @@ static void parse_args(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'w' :
|
case 'w' :
|
||||||
g_delim = '/';
|
g_delim = '\\';
|
||||||
g_winpaths = true;
|
g_winpaths = false;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'l' :
|
case 'l' :
|
||||||
g_delim = '\\';
|
g_delim = '/';
|
||||||
g_winpaths = false;
|
g_winpaths = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'h' :
|
case 'h' :
|
||||||
|
Loading…
Reference in New Issue
Block a user