diff options
author | Ben Laurie <ben@links.org> | 2013-04-06 17:17:14 +0200 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2013-04-06 17:17:14 +0200 |
commit | afdf3669218cfcfbcb83b070d35dfa71ea73f819 (patch) | |
tree | 8a213b098a5f61cc8b613781b55fdcfe7116a555 /util | |
parent | Fix non-copy builds. (diff) | |
download | openssl-afdf3669218cfcfbcb83b070d35dfa71ea73f819.tar.xz openssl-afdf3669218cfcfbcb83b070d35dfa71ea73f819.zip |
Missing semicolon.
Diffstat (limited to 'util')
-rwxr-xr-x | util/mk1mf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 599a192b66..ab806d1d23 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -1305,7 +1305,7 @@ sub cc_compile_target $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/; |