aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc/win32/Install.c
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2013-02-22 15:24:53 +0100
committerLukas Larsson <[email protected]>2013-02-22 15:24:53 +0100
commitf1d328bdbc58e2ad0325c11edb3bfa0db50b84c3 (patch)
tree5d45ea910b1fc96591335724dcebde8469784dd1 /erts/etc/win32/Install.c
parent13b1dcfc31b3c42affafc42c30105abfbebbfbf3 (diff)
parent266e32412752dd8f4892a460638eeedeeafdd788 (diff)
downloadotp-f1d328bdbc58e2ad0325c11edb3bfa0db50b84c3.tar.gz
otp-f1d328bdbc58e2ad0325c11edb3bfa0db50b84c3.tar.bz2
otp-f1d328bdbc58e2ad0325c11edb3bfa0db50b84c3.zip
Merge branch 'lukas/common_test/remove_deprecated_run_test/OTP-9052'
* lukas/common_test/remove_deprecated_run_test/OTP-9052: Remove the deprecated run_test start program OTP-10881
Diffstat (limited to 'erts/etc/win32/Install.c')
-rw-r--r--erts/etc/win32/Install.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/erts/etc/win32/Install.c b/erts/etc/win32/Install.c
index d680b67dd6..d0c69679f1 100644
--- a/erts/etc/win32/Install.c
+++ b/erts/etc/win32/Install.c
@@ -171,20 +171,6 @@ int main(int argc, char **argv)
fprintf(stderr,"Continuing installation anyway...\n");
}
}
-
- // Remove in R16B
- sprintf(fromname,"%s\\%s",bin_dir,"ct_run.exe");
- sprintf(toname,"%s\\%s",bin_dir,"run_test.exe");
- if (GetFileAttributes(fromname) == 0xFFFFFFFF) {
- fprintf(stderr,"Could not find file %s\n",
- fromname);
- exit(1);
- }
- if (!CopyFile(fromname,toname,FALSE)) {
- fprintf(stderr,"Could not copy file %s to %s\n",
- fromname,toname);
- fprintf(stderr,"Continuing installation anyway...\n");
- }
for (i = 0; scripts[i] != NULL; ++i) {
sprintf(fromname,"%s\\%s",release_dir,scripts[i]);