make the --link option match the original: just symlink the executable

This commit is contained in:
Just van Rossum 2002-11-22 11:45:42 +00:00
parent 16aebf77c7
commit e6de56e81c
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ Usage:
buildappbundle [options] executable buildappbundle [options] executable
Options: Options:
--output o Output file; default executable with .app appended, short -o --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 --plist file Plist file (default: generate one), short -p
--nib file Main nib file or lproj folder for Cocoa program, short -n --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 --resource r Extra resource file to be copied to Resources, short -r
@ -77,7 +77,7 @@ def main():
builder = AppBuilder(name=bundlename, executable=executable, builder = AppBuilder(name=bundlename, executable=executable,
builddir=builddir, creator=creator, plist=plist, resources=resources, builddir=builddir, creator=creator, plist=plist, resources=resources,
symlink=symlink, verbosity=verbosity) symlink_exec=symlink, verbosity=verbosity)
if nib is not None: if nib is not None:
resources.append(nib) resources.append(nib)