projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46c9784
)
Reverted the rev. 1.8 change: the magic for decoding resourcefiles
author
Jack Jansen
<jack.jansen@cwi.nl>
Tue, 25 Feb 2003 22:58:33 +0000
(22:58 +0000)
committer
Jack Jansen
<jack.jansen@cwi.nl>
Tue, 25 Feb 2003 22:58:33 +0000
(22:58 +0000)
is now in buildtools.
Lib/plat-mac/bundlebuilder.py
patch
|
blob
|
history
diff --git
a/Lib/plat-mac/bundlebuilder.py
b/Lib/plat-mac/bundlebuilder.py
index 3d4f3c9c14b7d65e6c4b9aa4bca25e442d637c3f..a263e62e232a7a14e611b151df1b36f27d93e533 100755
(executable)
--- 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)