From: secher Date: Mon, 17 Sep 2007 14:00:33 +0000 (+0000) Subject: just a little modification X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c3781315afc7992c545854fe3febff07a8283dea;p=modules%2Fkernel.git just a little modification --- diff --git a/src/Batch/BatchLight_BatchManager_PBS.cxx b/src/Batch/BatchLight_BatchManager_PBS.cxx index b8f11c0d7..9a59c4f67 100644 --- a/src/Batch/BatchLight_BatchManager_PBS.cxx +++ b/src/Batch/BatchLight_BatchManager_PBS.cxx @@ -273,7 +273,7 @@ namespace BatchLight { tempOutputFile << "#! /bin/sh -f" << endl ; tempOutputFile << "#PBS -l nodes=" << nbnodes << endl ; - tempOutputFile << "#PBS -o ~/" << _dirForTmpFiles << "/runSalome.log" << endl ; + tempOutputFile << "#PBS -o ~/" << _dirForTmpFiles << "/runSalome.log${PBS_JOBID}" << endl ; tempOutputFile << _mpiImpl->boot("${PBS_NODEFILE}",nbnodes); tempOutputFile << _mpiImpl->run("${PBS_NODEFILE}",nbproc,filenameToExecute.str()); tempOutputFile << _mpiImpl->halt();