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:
Gregory Nutt 2015-05-31 12:42:44 -06:00
parent e22deff1ab
commit 9ee6b2db70

View File

@ -178,13 +178,13 @@ static void parse_args(int argc, char **argv)
break;
case 'w' :
g_delim = '/';
g_winpaths = true;
g_delim = '\\';
g_winpaths = false;
break;
case 'l' :
g_delim = '\\';
g_winpaths = false;
g_delim = '/';
g_winpaths = true;
break;
case 'h' :