diff options
author | Lars Persson | 2008-06-30 19:10:32 +0000 |
---|---|---|
committer | Lars Persson | 2008-06-30 19:10:32 +0000 |
commit | f530c36ad44d9605f65547d6b65127c97f8ea5b8 (patch) | |
tree | 5d6661d857a75c41a148a152f3bb229b3d606246 /backends/platform | |
parent | e415a97fe53a3eec537d7d67760af45730ec91fd (diff) | |
download | scummvm-rg350-f530c36ad44d9605f65547d6b65127c97f8ea5b8.tar.gz scummvm-rg350-f530c36ad44d9605f65547d6b65127c97f8ea5b8.tar.bz2 scummvm-rg350-f530c36ad44d9605f65547d6b65127c97f8ea5b8.zip |
del instead of rm command
svn-id: r32853
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/symbian/BuildPackageUpload_AllVersions.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/symbian/BuildPackageUpload_AllVersions.pl b/backends/platform/symbian/BuildPackageUpload_AllVersions.pl index be5f9d39d2..94edbf4fcf 100644 --- a/backends/platform/symbian/BuildPackageUpload_AllVersions.pl +++ b/backends/platform/symbian/BuildPackageUpload_AllVersions.pl @@ -607,7 +607,7 @@ sub BuildVariation() $UnlinkFile = $SDK_RootDirs{$SDK}."/epoc32/release/$TargetDir/urel/ScummVM.exe"; if (-e $UnlinkFile) { unlink($UnlinkFile) or PrintErrorMessage("Removing $UnlinkFile"); } # remove all libs here, note they are in another dir! - system("rm ".$SDK_RootDirs{$SDK}."/epoc32/release/$TargetName/urel/scummvm_*.lib"); + system("del ".$SDK_RootDirs{$SDK}."/epoc32/release/$TargetName/urel/scummvm_*.lib"); system("bldmake bldfiles 2> NUL > NUL"); PrintErrorMessage("'bldmake bldfiles' exited with value " . ($? >> 8)) if ($? >> 8); |