1
0
mirror of synced 2026-05-04 23:35:26 +00:00

Fix "--extension=" with empty parameter

This commit is contained in:
Axel Beckert
2013-01-17 21:57:50 +01:00
parent 13dbf65793
commit c6caa0a0ad
5 changed files with 5 additions and 6 deletions

View File

@@ -114,9 +114,9 @@ sub testFile
}
#print " - remove quotes : $o ";
#
# Discard anything after "=", or " "
# Discard anything after "=", ":", or " "
#
if ( $o =~ /(.*)[ \t=]+(.*)/ )
if ( $o =~ /(.*)[ \t=:]+(.*)/ )
{
$o = $1;
}