# HG changeset patch # User Doug Simon # Date 1325595218 -3600 # Node ID 71a2cd79c3753a533af2a74595753124a45d01d9 # Parent 4af146831ed60acdce03beded42fa4d268cafca2 Made stdout for mx unbuffered. diff -r 4af146831ed6 -r 71a2cd79c375 mxtool/mx --- a/mxtool/mx Tue Jan 03 12:56:55 2012 +0100 +++ b/mxtool/mx Tue Jan 03 13:53:38 2012 +0100 @@ -44,7 +44,7 @@ raise SystemExit('The mx.py script requires Python 2.7, not {0}.{1}.{2}'.format(major, minor, micro)) END if [ $? -eq 0 ]; then - exec python "$dir/mx.py" "$@" + exec python -u "$dir/mx.py" "$@" fi #end of file diff -r 4af146831ed6 -r 71a2cd79c375 mxtool/mx.py --- a/mxtool/mx.py Tue Jan 03 12:56:55 2012 +0100 +++ b/mxtool/mx.py Tue Jan 03 13:53:38 2012 +0100 @@ -2,7 +2,7 @@ # # ---------------------------------------------------------------------------------------------------- # -# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it