Remove ui_compat
[openssl.git] / util / files.pl
index b15407f0c90562bff4b11ad40cb8d610178e0c99..d5c78bafc1bfecc696c3cc594fc45937ef51b083 100755 (executable)
@@ -4,7 +4,7 @@
 # It is basically a list of all variables from the passed makefile
 #
 
-while ($ARGV[0] =~ /^(\S+)\s*=(.*)$/)
+while ($ARGV[0] =~ /^([^\s=]+)\s*=\s*(.*)$/)
        {
        $sym{$1} = $2;
        shift;
@@ -15,7 +15,7 @@ while (<>)
        {
        chop;
        s/#.*//;
-       if (/^(\S+)\s*=\s*(.*)$/)
+       if (/^([^\s=]+)\s*=\s*(.*)$/)
                {
                $o="";
                ($s,$b)=($1,$2);