]> granicus.if.org Git - python/commitdiff
make the --link option match the original: just symlink the executable
authorJust van Rossum <just@letterror.com>
Fri, 22 Nov 2002 11:45:42 +0000 (11:45 +0000)
committerJust van Rossum <just@letterror.com>
Fri, 22 Nov 2002 11:45:42 +0000 (11:45 +0000)
Mac/scripts/buildappbundle.py

index 2b007bf8753e285fe66c86d7d630cc38f92f9533..281c6fea6dd79fd67bf90ec5f339284d21612ba7 100755 (executable)
@@ -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)