patches/pygame-02-noconfirm.diff
author jurikm
Sun, 12 Feb 2012 14:04:10 +0000
changeset 8245 383896da4129
parent 2331 bb50963a5336
permissions -rw-r--r--
SFEsauerbraten.spec: add IPS package name

--- pygame-1.9.1release/config_unix.py-orig	2010-02-03 07:52:17.647113797 -0600
+++ pygame-1.9.1release/config_unix.py	2010-02-03 07:52:32.877435187 -0600
@@ -20,10 +20,6 @@ origincdirs = ['/include', '/include/SDL
 origlibdirs = ['/lib','/lib64','/X11R6/lib']
 
 def confirm(message):
-    "ask a yes/no question, return result"
-    reply = raw_input('\n' + message + ' [Y/n]:')
-    if reply and (reply[0].lower()) == 'n':
-        return 0
     return 1
 
 class DependencyProg: