blob: 1d8c99ee20ed2644c045746fe5fad54b4b4f2a9a (
plain)
1 diff -pruN pygame-1.9.1release.orig/config_msys.py pygame-1.9.1release/config_msys.py
2 --- pygame-1.9.1release.orig/config_msys.py 2012-04-06 07:54:22.787229875 +0000
3 +++ pygame-1.9.1release/config_msys.py 2012-04-06 07:54:57.340496880 +0000
4 @@ -283,7 +283,7 @@ def main():
5
6 for d in DEPS[1:]:
7 if not d.found:
8 - if not confirm("""
9 + if "-auto" not in sys.argv and not confirm("""
10 Warning, some of the pygame dependencies were not found. Pygame can still
11 compile and install, but games that depend on those missing dependencies
12 will not run. Would you like to continue the configuration?"""):
13 diff -pruN pygame-1.9.1release.orig/config_unix.py pygame-1.9.1release/config_unix.py
14 --- pygame-1.9.1release.orig/config_unix.py 2012-04-06 07:54:22.787229875 +0000
15 +++ pygame-1.9.1release/config_unix.py 2012-04-06 07:54:57.340496880 +0000
16 @@ -174,7 +174,7 @@ def main():
17
18 for d in DEPS[1:]:
19 if not d.found:
20 - if not confirm("""
21 + if "-auto" not in sys.argv and not confirm("""
22 Warning, some of the pygame dependencies were not found. Pygame can still
23 compile and install, but games that depend on those missing dependencies
24 will not run. Would you like to continue the configuration?"""):
|