diff options
author | marha <marha@users.sourceforge.net> | 2011-09-22 15:20:09 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-09-22 15:20:09 +0200 |
commit | c1e6c7428a8d2c1b60ffac7df7a3f56c300fa983 (patch) | |
tree | 8874978d314129a4f47ee575b076c2d8eb1a8738 /mesalib/scons/custom.py | |
parent | 37466741e35c5eb3b204863a5023bf8d192efc06 (diff) | |
download | vcxsrv-c1e6c7428a8d2c1b60ffac7df7a3f56c300fa983.tar.gz vcxsrv-c1e6c7428a8d2c1b60ffac7df7a3f56c300fa983.tar.bz2 vcxsrv-c1e6c7428a8d2c1b60ffac7df7a3f56c300fa983.zip |
libxtrans libX11 libX11 libXext mesa xserver git update 22 sep 2011
Diffstat (limited to 'mesalib/scons/custom.py')
-rw-r--r-- | mesalib/scons/custom.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mesalib/scons/custom.py b/mesalib/scons/custom.py index b6d716cf4..08073162e 100644 --- a/mesalib/scons/custom.py +++ b/mesalib/scons/custom.py @@ -208,12 +208,10 @@ def pkg_use_modules(env, names): prefix = name + '_' if not 'HAVE_' + name in env: - print 'Attempt to use unknown module %s' % name - env.Exit(1) + raise Exception('Attempt to use unknown module %s' % name) if not env['HAVE_' + name]: - print 'Attempt to use unavailable module %s' % name - env.Exit(1) + raise Exception('Attempt to use unavailable module %s' % name) flags = {} for flag_name, flag_value in env.Dictionary().iteritems(): |