commit | afdf3669218cfcfbcb83b070d35dfa71ea73f819 | [log] [tgz] |
---|---|---|
author | Ben Laurie <ben@links.org> | Sat Apr 06 16:17:14 2013 +0100 |
committer | Ben Laurie <ben@links.org> | Sat Apr 06 16:17:14 2013 +0100 |
tree | 8a213b098a5f61cc8b613781b55fdcfe7116a555 | |
parent | fed45e18795fc52900c578132862b10ae4e78b25 [diff] |
Missing semicolon.
diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 599a192..ab806d1 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl
@@ -1305,7 +1305,7 @@ $target =~ s/\//$o/g if $o ne "/"; $source =~ s/\//$o/g if $o ne "/"; $ret ="$target: \$(SRC_D)$o$source\n\t"; - $ret.="\$(CC)" + $ret.="\$(CC)"; $ret.= " -MMD" if $orig_platform eq "copy"; $ret.= " ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n"; $target =~ s/\.o$/.d/;