summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-mac')
-rwxr-xr-xLib/plat-mac/bundlebuilder.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py
index 3d4f3c9..a263e62 100755
--- a/Lib/plat-mac/bundlebuilder.py
+++ b/Lib/plat-mac/bundlebuilder.py
@@ -36,8 +36,6 @@ from copy import deepcopy
import getopt
from plistlib import Plist
from types import FunctionType as function
-import macresource
-
class BundleBuilderError(Exception): pass
@@ -189,8 +187,6 @@ class BundleBuilder(Defaults):
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)