summaryrefslogtreecommitdiff
path: root/scripts/IcePatch2Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/IcePatch2Util.py')
-rw-r--r--scripts/IcePatch2Util.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/scripts/IcePatch2Util.py b/scripts/IcePatch2Util.py
deleted file mode 100644
index 6b12ecccc76..00000000000
--- a/scripts/IcePatch2Util.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# Copyright (c) ZeroC, Inc. All rights reserved.
-#
-
-from Util import *
-
-class IcePatch2Calc(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
-
- def __init__(self, *args, **kargs):
- Process.__init__(self, exe="icepatch2calc", mapping=Mapping.getByName("cpp"), *args, **kargs)
-
- def getExe(self, current):
- return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe
-
-class IcePatch2Client(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
-
- def __init__(self, *args, **kargs):
- Process.__init__(self, exe="icepatch2client", mapping=Mapping.getByName("cpp"), *args, **kargs)
-
- def getExe(self, current):
- return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe
-
-class IcePatch2Server(ProcessFromBinDir, ProcessIsReleaseOnly, Process):
-
- def __init__(self, *args, **kargs):
- Process.__init__(self, exe="icepatch2server", mapping=Mapping.getByName("cpp"), *args, **kargs)
-
- def getExe(self, current):
- return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe