Hi
very strange
Here is an extract of my install_systel.pl file
sub main
{
my ($project,$plateForme,$perlPath,,$systelIni,$systelIniOut,$FILE1,$FILE2,$ps);
my ($curDir);
printf "\nOSchecking - $ENV{\"OS\"}\n";
if($ENV{"OS"} && ( $ENV{"OS"} eq "Windows_NT" ) )
{
#Cas du systeme Windows NT
$ps="\\";
$curDir=`cd`;
}
else
{
#Cas du system Unix
$ps="/";
$curDir=`pwd`;
}
printf "\nOSchecking 2 - $curDir\n";
#On rajoute si besoin est le chemin a $0
$0=~s#\.[/\\]##g;
if(!($0=~/[\\\/]/))
{
chomp($curDir);
$0=$curDir.$ps.$0;
}
And Here is the result of install_systel.bat execution on my computer
C:\DONNEES\TELEMAC\Code\CDv6p0\install\win>install_systel.bat
OSchecking - Windows_NT
OSchecking 2 - C:\DONNEES\TELEMAC\Code\CDv6p0\install\win
-- La plateforme est : win
-- Le repertoire du Systeme Telemac est : C:\DONNEES\TELEMAC\Code\CDv6p0
-- Ajout des parametres dans C:\DONNEES\TELEMAC\Code\CDv6p0\config\systel.ini
-- Copie des parametres dans C:\DONNEES\TELEMAC\Code\CDv6p0\config\cfgmak.mak
** AJOUTER les chemins suivants a votre Path **
- C:\DONNEES\TELEMAC\Code\CDv6p0\bin
Tapez ENTREE pour fermer cette fenetre
C:\DONNEES\TELEMAC\Code\CDv6p0\install\win>
Don't take care about my installation location...
But as you could see, the OS2 checking result is equal to the result of cd command
C:\DONNEES\TELEMAC\Code\CDv6p0\install\win>cd
C:\DONNEES\TELEMAC\Code\CDv6p0\install\win
C:\DONNEES\TELEMAC\Code\CDv6p0\install\win>
could you check the result of cd command and also check the install_systel.pl ...
regards