Missing semicolon.
This commit is contained in:
parent
fed45e1879
commit
afdf366921
1 changed files with 1 additions and 1 deletions
|
@ -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/;
|
||||||
|
|
Loading…
Reference in a new issue