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:
d0aeeee
)
Take the first definition of a variable.
author
Ben Laurie
<ben@links.org>
Sun, 3 Mar 2013 02:56:45 +0000
(
02:56
+0000)
committer
Ben Laurie
<ben@links.org>
Mon, 4 Mar 2013 14:31:18 +0000
(14:31 +0000)
util/mk1mf.pl
patch
|
blob
|
history
diff --git
a/util/mk1mf.pl
b/util/mk1mf.pl
index bb528f0c4b3e225375a9f61422bdc1842f43a57b..e19816f4f723f2efd57c15f04c8269ac78111c9c 100755
(executable)
--- a/
util/mk1mf.pl
+++ b/
util/mk1mf.pl
@@
-69,7
+69,7
@@
open(IN,"<Makefile") || die "unable to open Makefile!\n";
while(<IN>) {
my ($mf_opt, $mf_ref);
while (($mf_opt, $mf_ref) = each %mf_import) {
- if (/^$mf_opt\s*=\s*(.*)$/) {
+ if (/^$mf_opt\s*=\s*(.*)$/
&& !defined($$mfref)
) {
$$mf_ref = $1;
}
}