Reverted the rev. 1.8 change: the magic for decoding resourcefiles

is now in buildtools.
This commit is contained in:
Jack Jansen 2003-02-25 22:58:33 +00:00
parent 46c9784f68
commit ade626464d
1 changed files with 0 additions and 4 deletions

View File

@ -36,8 +36,6 @@
import getopt
from plistlib import Plist
from types import FunctionType as function
import macresource
class BundleBuilderError(Exception): pass
@ -189,8 +187,6 @@ def _copyFiles(self):
dst = pathjoin(self.bundlepath, dst)
if self.symlink:
symlink(src, dst, mkdirs=1)
elif os.path.splitext(src)[1] == '.rsrc':
macresource.install(src, dst, mkdirs=1)
else:
copy(src, dst, mkdirs=1)