Skip to content
Snippets Groups Projects
Commit 6da70628 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Make the test script tag parser a bit more robust.

Check for the .exe extension on mingw32 builds.
parent 3bae7482
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,7 @@ sub getpart {
$inside++;
}
elsif((1 ==$inside) && ($_ =~ /^ *\<$part[ \>]/)) {
if($_ =~ /$part .*base64=/) {
if($_ =~ /$part [^>]*base64=/) {
# attempt to detect base64 encoded parts
$base64=1;
}
......
......@@ -133,6 +133,9 @@ if ($^O eq 'MSWin32' || $targetos) {
$binext = '.exe';
$libext = '.lib';
}
elsif ($targetos =~ /mingw32/) {
$binext = '.exe';
}
elsif ($targetos =~ /netware/) {
$configurebuild = 0;
$binext = '.nlm';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment