summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJiHO <jiho-sf@users.sourceforge.net>2007-12-27 13:19:44 +0000
committerjiho-sf <jiho-sf@users.sourceforge.net>2007-12-27 13:19:44 +0000
commitc291407a33b7cc690a0c770d2e0224fe9855d347 (patch)
tree2c3503d30b75b244e2b567bbd5bd70a52dd56372 /packaging
parentAdd support for python module tree (i.e. directories with all python modules ... (diff)
downloadinkscape-c291407a33b7cc690a0c770d2e0224fe9855d347.tar.gz
inkscape-c291407a33b7cc690a0c770d2e0224fe9855d347.zip
Enhanced comments related to python modules
(bzr r4316)
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 4c0927001..8e0970b39 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -71,7 +71,7 @@ Create an app bundle for OS X
has been run
\033[1mEXAMPLE\033[0m
- $0 -s -py /Library/Python/2.3/site-packages/ -l /opt/local -b ../../Build/bin/inkscape -p ../../Info.plist
+ $0 -s -py ~/python-modules -l /opt/local -b ../../Build/bin/inkscape -p ../../Info.plist
"
}
@@ -218,7 +218,7 @@ rsync -av --exclude ".svn" "$resdir"/Resources/* "$package"/Contents/Resources/
# Add python modules if requested
if [ ${add_python} = "true" ]; then
- # copy python site-packages
+ # copy python site-packages. They need to be organized in a hierarchical set of directories, by architecture and python major+minor version, e.g. i386/2.3/ for Ptyhon 2.3 on Intel; ppc/2.4/ for Python 2.4 on PPC
cp -rvf "$python_dir"/* "$pkgpython"
fi