diff options
author | Just van Rossum <just@letterror.com> | 2002-11-22 11:45:42 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-11-22 11:45:42 (GMT) |
commit | e6de56e81cf5f5df5449b5bec310c354126a269f (patch) | |
tree | a323f8db6e28cbdea27cb3d1a51477dd61c99d2a | |
parent | 16aebf77c7825c66b54f289ec273a66713346b69 (diff) | |
download | cpython-e6de56e81cf5f5df5449b5bec310c354126a269f.zip cpython-e6de56e81cf5f5df5449b5bec310c354126a269f.tar.gz cpython-e6de56e81cf5f5df5449b5bec310c354126a269f.tar.bz2 |
make the --link option match the original: just symlink the executable
-rwxr-xr-x | Mac/scripts/buildappbundle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/scripts/buildappbundle.py b/Mac/scripts/buildappbundle.py index 2b007bf..281c6fe 100755 --- a/Mac/scripts/buildappbundle.py +++ b/Mac/scripts/buildappbundle.py @@ -10,7 +10,7 @@ Usage: buildappbundle [options] executable Options: --output o Output file; default executable with .app appended, short -o - --link Symlink files instead of copying them, short -l + --link Symlink the executable instead of copying it, short -l --plist file Plist file (default: generate one), short -p --nib file Main nib file or lproj folder for Cocoa program, short -n --resource r Extra resource file to be copied to Resources, short -r @@ -77,7 +77,7 @@ def main(): builder = AppBuilder(name=bundlename, executable=executable, builddir=builddir, creator=creator, plist=plist, resources=resources, - symlink=symlink, verbosity=verbosity) + symlink_exec=symlink, verbosity=verbosity) if nib is not None: resources.append(nib) |