Missing semicolon.

This commit is contained in:
Ben Laurie 2013-04-06 16:17:14 +01:00
parent fed45e1879
commit afdf366921

View file

@ -1305,7 +1305,7 @@ sub cc_compile_target
$target =~ s/\//$o/g if $o ne "/"; $target =~ s/\//$o/g if $o ne "/";
$source =~ s/\//$o/g if $o ne "/"; $source =~ s/\//$o/g if $o ne "/";
$ret ="$target: \$(SRC_D)$o$source\n\t"; $ret ="$target: \$(SRC_D)$o$source\n\t";
$ret.="\$(CC)" $ret.="\$(CC)";
$ret.= " -MMD" if $orig_platform eq "copy"; $ret.= " -MMD" if $orig_platform eq "copy";
$ret.= " ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n"; $ret.= " ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
$target =~ s/\.o$/.d/; $target =~ s/\.o$/.d/;