Update of /cvsroot/binaryphp/binaryphp
In directory sc8-pr-cvs1:/tmp/cvs-serv25471
Modified Files:
convert.php
Log Message:
Index: convert.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/convert.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** convert.php 5 Aug 2003 00:36:08 -0000 1.19
--- convert.php 5 Aug 2003 00:49:04 -0000 1.20
***************
*** 79,83 ****
shell_exec($comp);
} else {
! $comp = 'g++ -o ' . $output . ' ' . $input. ' ' . $flags . ' >> log 2>> log';
echo $comp, "\n\n";
shell_exec($comp);
--- 79,83 ----
shell_exec($comp);
} else {
! $comp = 'g++ -o ' . $output . ' test.cpp ' . $flags . ' >> log 2>> log';
echo $comp, "\n\n";
shell_exec($comp);
***************
*** 101,104 ****
}
if(!DEBUG)
! unlink($input);
?>
--- 101,104 ----
}
if(!DEBUG)
! unlink('test.cpp');
?>
|