wok-current annotate python-pygame/stuff/config.patch @ rev 10921
fix get-LibreOffice
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 05 21:16:43 2011 +0200 (2011-08-05) |
parents | |
children |
rev | line source |
---|---|
slaxemulator@6908 | 1 Index: config_unix.py |
slaxemulator@6908 | 2 =================================================================== |
slaxemulator@6908 | 3 --- config_unix.py (revision 2567) |
slaxemulator@6908 | 4 +++ config_unix.py (working copy) |
slaxemulator@6908 | 5 @@ -174,7 +174,7 @@ |
slaxemulator@6908 | 6 |
slaxemulator@6908 | 7 for d in DEPS[1:]: |
slaxemulator@6908 | 8 if not d.found: |
slaxemulator@6908 | 9 - if not confirm(""" |
slaxemulator@6908 | 10 + if "-auto" not in sys.argv and not confirm(""" |
slaxemulator@6908 | 11 Warning, some of the pygame dependencies were not found. Pygame can still |
slaxemulator@6908 | 12 compile and install, but games that depend on those missing dependencies |
slaxemulator@6908 | 13 will not run. Would you like to continue the configuration?"""): |
slaxemulator@6908 | 14 Index: config_msys.py |
slaxemulator@6908 | 15 =================================================================== |
slaxemulator@6908 | 16 --- config_msys.py (revision 2567) |
slaxemulator@6908 | 17 +++ config_msys.py (working copy) |
slaxemulator@6908 | 18 @@ -283,7 +283,7 @@ |
slaxemulator@6908 | 19 |
slaxemulator@6908 | 20 for d in DEPS[1:]: |
slaxemulator@6908 | 21 if not d.found: |
slaxemulator@6908 | 22 - if not confirm(""" |
slaxemulator@6908 | 23 + if "-auto" not in sys.argv and not confirm(""" |
slaxemulator@6908 | 24 Warning, some of the pygame dependencies were not found. Pygame can still |
slaxemulator@6908 | 25 compile and install, but games that depend on those missing dependencies |
slaxemulator@6908 | 26 will not run. Would you like to continue the configuration?"""): |