Remove obsolete workaround for Octave 3.2

issue#70
Sébastien Villemot 2012-11-29 16:44:51 +01:00
parent c50cd383c0
commit aca256eb02
1 changed files with 0 additions and 3 deletions

View File

@ -579,9 +579,6 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all, bool no_log, b
# endif
#endif
mOutputFile << "else" << endl // Octave
<< " if ~octave_ver_less_than('3.2.0')" << endl // Workaround for bug in Octave >= 3.2, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550823
<< " sleep(2)" << endl
<< " end" << endl
<< " mex " << basename << "_dynamic.c " << basename << "_dynamic_mex.c" << endl
<< " mex " << basename << "_static.c " << basename << "_static_mex.c" << endl
<< "end" << endl;