summaryrefslogtreecommitdiffstats
path: root/util/mk1mf.pl
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-03-03 02:56:45 +0000
committerBen Laurie <ben@links.org>2013-03-04 14:31:18 +0000
commit7bbb8c5620c7a932988473533e2aca385e4b89c5 (patch)
tree9e185b7f59ce6ae94f847e4a38761aa49685fe92 /util/mk1mf.pl
parentd0aeeee176dabbecd993313f357e83b8286a6a56 (diff)
Take the first definition of a variable.
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index bb528f0c4b..e19816f4f7 100755
--- 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;
}
}