Kaydet (Commit) ade62646 authored tarafından Jack Jansen's avatar Jack Jansen

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

is now in buildtools.
üst 46c9784f
...@@ -36,8 +36,6 @@ from copy import deepcopy ...@@ -36,8 +36,6 @@ from copy import deepcopy
import getopt import getopt
from plistlib import Plist from plistlib import Plist
from types import FunctionType as function from types import FunctionType as function
import macresource
class BundleBuilderError(Exception): pass class BundleBuilderError(Exception): pass
...@@ -189,8 +187,6 @@ class BundleBuilder(Defaults): ...@@ -189,8 +187,6 @@ class BundleBuilder(Defaults):
dst = pathjoin(self.bundlepath, dst) dst = pathjoin(self.bundlepath, dst)
if self.symlink: if self.symlink:
symlink(src, dst, mkdirs=1) symlink(src, dst, mkdirs=1)
elif os.path.splitext(src)[1] == '.rsrc':
macresource.install(src, dst, mkdirs=1)
else: else:
copy(src, dst, mkdirs=1) copy(src, dst, mkdirs=1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment