OSX build tweaks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-03-21 22:37:32 +00:00
parent ec5a3c3d14
commit 885e38e0c4
4 changed files with 11 additions and 9 deletions

View File

@@ -58,7 +58,7 @@ The best way to get help with wxWindows and wxPython is to subscribe to the mail
\
\pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural
\f2 \cf2 http://wxPython.org/maillist.org\
\f2 \cf2 http://wxPython.org/maillist.php\
\
\pard\tx1440\tx2880\tx4320\tx5760\tx7200\ql\qnatural

View File

@@ -1,5 +1,5 @@
Welcome!
This program will install wxPython 2.4.0.6 for MacPython-OSX 2.3.
This program will install wxPython 2.4.0.7 for MacPython-OSX 2.3.
Build date: Wed Mar 12 02:14:18 PST 2003
Build date: Fri Mar 21 14:00:06 PST 2003

View File

@@ -1,16 +1,18 @@
#!/bin/sh
#!/bin/sh -e
# Compile the .py files in the wxPython pacakge
/usr/local/bin/python $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/../compileall.py $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/wxPython
/usr/local/bin/python -O $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/../compileall.py $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/wxPython
# and in the demo
/usr/local/bin/python $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/../compileall.py /Applications/wxPythonOSX-2.4.0.6/demo
/usr/local/bin/python $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/../compileall.py /Applications/wxPythonOSX-2.4.0.7/demo
# Make the demo/data dir writable
chmod a+w /Applications/wxPythonOSX-2.4.0.6/demo/data
chmod a+w /Applications/wxPythonOSX-2.4.0.7/demo/data
# and the wxPython pacakge should be group writable
chgrp -R admin $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/wxPython
chgrp -R admin /Applications/wxPythonOSX-2.4.0.7
chmod -R g+w $2/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/wxPython
chmod -R g+w /Applications/wxPythonOSX-2.4.0.6
chmod -R g+w /Applications/wxPythonOSX-2.4.0.7
exit 0