projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7993792
)
mk1mf.pl: replace chop to make it work in mixture of perls for Windows.
author
Andy Polyakov
<appro@openssl.org>
Sun, 15 Jul 2012 13:40:04 +0000
(13:40 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sun, 15 Jul 2012 13:40:04 +0000
(13:40 +0000)
util/mk1mf.pl
patch
|
blob
|
history
diff --git
a/util/mk1mf.pl
b/util/mk1mf.pl
index d818c61b9f85bf471cf7eb6c6cedbffe7def7d69..e27434d2673e717c733d0d77812b8ce7fe353f59 100755
(executable)
--- a/
util/mk1mf.pl
+++ b/
util/mk1mf.pl
@@
-347,7
+347,7
@@
open(IN,"<$infile") || die "unable to open $infile:$!\n";
$_=<IN>;
for (;;)
{
- chop;
+ s/\s*$//; # was chop, didn't work in mixture of perls for Windows...
($key,$val)=/^([^=]+)=(.*)/;
if ($key eq "RELATIVE_DIRECTORY")