コード例 #1
0
ファイル: heppdt.py プロジェクト: iLCSoft/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir( self.installPath + "/build" )
     os.system( "make clean" )
コード例 #2
0
ファイル: cmake.py プロジェクト: XiaocongAi/eutel-install
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir(self.installPath + "/build")
     os.system("make clean")
コード例 #3
0
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir(self.buildPath)
     os.system("make clean")
コード例 #4
0
ファイル: root.py プロジェクト: yradkhorrami/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir(self.installPath)
     os.system("rm -rf ./" + self.name)
コード例 #5
0
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir(self.installPath)
     os.system("find . \! -name 'ninja' -delete")
コード例 #6
0
ファイル: root.py プロジェクト: iLCSoft/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir( self.installPath )
     os.system( "rm -rf ./" + self.name )
コード例 #7
0
ファイル: qt5.py プロジェクト: tmadlener/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir( self.installPath )
     os_system( "make clean" )
コード例 #8
0
ファイル: clhep.py プロジェクト: iLCSoft/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir( self.buildPath ) 
     os.system( "make clean" )
コード例 #9
0
ファイル: ninja.py プロジェクト: iLCSoft/iLCInstall
 def cleanupInstall(self):
     BaseILC.cleanupInstall(self)
     os.chdir( self.installPath )
     os.system( "find . \! -name 'ninja' -delete" )