From: Ben Laurie Date: Sat, 6 Apr 2013 15:17:14 +0000 (+0100) Subject: Missing semicolon. X-Git-Tag: master-pre-reformat~1282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afdf3669218cfcfbcb83b070d35dfa71ea73f819;p=thirdparty%2Fopenssl.git Missing semicolon. --- diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 599a192b664..ab806d1d23b 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/;