Skip to content

Commit 25092db

Browse files
committed
Fixed pygame build.py for use via setup.py
1 parent 45356ff commit 25092db

File tree

1 file changed

+3
-0
lines changed
  • pythonforandroid/bootstraps/pygame/build

1 file changed

+3
-0
lines changed

pythonforandroid/bootstraps/pygame/build/build.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,9 @@ def parse_args(args=None):
480480
args = sys.argv[1:]
481481
args = ap.parse_args(args)
482482

483+
if args.name and args.name[0] == '"' and args.name[-1] == '"':
484+
args.name = args.name[1:-1]
485+
483486
if not args.dir and not args.private and not args.launcher:
484487
ap.error('One of --dir, --private, or --launcher must be supplied.')
485488

0 commit comments

Comments
 (0)