Removed obsolete symlink and move functions #4397

This commit is contained in:
Nick Bolton 2015-03-02 17:44:54 +00:00
parent 24aa95a1d5
commit 3f3d452821
1 changed files with 0 additions and 8 deletions

View File

@ -774,14 +774,6 @@ class InternalCommands:
for target in targets:
self.macPostMake(target)
def symlink(self, source, target):
if not os.path.exists(target):
os.symlink(source, target)
def move(self, source, target):
if os.path.exists(source):
shutil.move(source, target)
def macPostMake(self, target):
dir = self.getGenerator().binDir